How to convert categorical data to double with unique rows
2 views (last 30 days)
Show older comments
Deborah Johnson
on 19 Jan 2023
Commented: Deborah Johnson
on 19 Jan 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 Comments
Accepted Answer
David Hill
on 19 Jan 2023
Edited: David Hill
on 19 Jan 2023
a=readtable('Book1.xlsx');
b=zeros(size(a));
b(ismember(a.Vertical_Steering,'Limbo'))=6
More Answers (0)
See Also
Categories
Find more on Bar Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!