How to convert categorical data to double with unique rows
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Deborah Johnson
el 19 de En. de 2023
Comentada: Deborah Johnson
el 19 de En. de 2023
Hello, please assist me with converting categorical data to double data. Would a if statement do this?
Under Vertical Steering Column, replace unique categoriacal text to a unique double value.
rows with Altitude to '0'
rows with Limbo to '6'
0 comentarios
Respuesta aceptada
David Hill
el 19 de En. de 2023
Editada: David Hill
el 19 de En. de 2023
a=readtable('Book1.xlsx');
b=zeros(size(a));
b(ismember(a.Vertical_Steering,'Limbo'))=6
Más respuestas (0)
Ver también
Categorías
Más información sobre Bar Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!