Changing Double to String Automatically in a Dataset Array
Mostrar comentarios más antiguos
Hi there,
I have a dataset array called 'data' of 2738 observations with 9 columns(2738*9) in size.
The 3rd column header is 'Surf' and contains 1's, 10's, 100's, 1000's, 10000's and 100000's.
I intend to write a for loop that goes through the data.surf column and wherever it sees a 1 it replaces it with 'F' and similarly replaces 10's with 'R' and so forth.
It seems as though I can replace the whole column with a 'F' by just typing in data.surf = 'F' but I am not quite sure how to write a mini script that automates this process. Any help or guidance will be appreciated.
Thanks in advance. Nj
1 comentario
Azzi Abdelmalek
el 26 de Dic. de 2012
Editada: Azzi Abdelmalek
el 26 de Dic. de 2012
Is data a struct variable? (data.surf = 'F')
Respuesta aceptada
Más respuestas (3)
Sean de Wolski
el 26 de Dic. de 2012
So something like this?
ds = dataset(rand(10,1)>0.5,'VarNames','Surf');
idx = ds.Surf;
ds.Surf = repmat('F',numel(idx),1);
ds.Surf(idx) = 'T';
ds.Surf
4 comentarios
Niraj Poudel
el 27 de Dic. de 2012
Walter Roberson
el 27 de Dic. de 2012
I suspect you cannot have both string and double in a single column, so you would not be able to handle this incrementally. Instead you would need to create a new array for the strings and fill that in, and then set the field to that new array. It is possible that the dataset would complain about the change in datatype at the end, but at least you would not be trying to store both types at the same time.
Niraj Poudel
el 27 de Dic. de 2012
Walter Roberson
el 27 de Dic. de 2012
If you are looking at data.surfs(K) then the new thing to write would be something like data.surfcodes(K)
Walter Roberson
el 26 de Dic. de 2012
letteridx = 1 + round(log10(data.surf);
letters = 'FRXUH';
data.surf = letters(letteridx);
2 comentarios
Niraj Poudel
el 27 de Dic. de 2012
Walter Roberson
el 27 de Dic. de 2012
Could you show max(data.surf) before this code?
I notice that I should have allowed one more letter,
letters = 'fRSXUH';
Change the XUH to the appropriate codes for 1000, 10000, and 100000
Peter Perkins
el 9 de En. de 2013
Nj, you might also consider using an ordinal variable here:
>> ds = dataset([10;100;10;1000;100000;1;1;10000],'VarNames','Surf')
ds =
Surf
10
100
10
1000
1e+05
1
1
10000
>> ds.Surf = ordinal(ds.Surf,{'F' 'R' 'A' 'B' 'C' 'D'},[1 10 100 1000 10000 100000])
ds =
Surf
R
A
R
B
D
F
F
C
You can now do things like
>> ds(ds.Surf < 'A',:)
ans =
Surf
R
R
F
F
where Surf is created so that F<R<A<B<C<D (which may or my not be what you want).
Categorías
Más información sobre Data Type Conversion en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!