Read a column as numbers
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Shaoni Nandi
am 3 Apr. 2020
Kommentiert: David Hill
am 3 Apr. 2020
I have a column with a large number of "NA" and a few numbers. When I import this from a csv file using readtable, matlab reads it as cell array. Even table2array returns a cell array instead of double. How do I read it / convert it as a column of numbers with NaNs for the "NA"s? My code is as below:
data=readtable("Data.csv");
t=table2array(data);
class(t)
ans =
'cell'
0 Kommentare
Akzeptierte Antwort
David Hill
am 3 Apr. 2020
This works just fine for me.
data=readmatrix('Data.csv');
1 Kommentar
David Hill
am 3 Apr. 2020
opts = detectImportOptions('Data.csv');
opts.DataLines=[2 Inf];
data=readmatrix('Data.csv',opts);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!