Reading csv files starting from a different row
32 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hariharan MK
le 24 Fév 2021
Commenté : Mohammad Sami
le 25 Fév 2021
I have this csv file which I would like to import into Matlab. The "readtable" function allows me to import the csv into matlab easily into a table format. It automatically makes the first row the column names and assigns the cell A1 "Var1" since it is empty.
However, what I would like it to do is to read assign the column names according to the 3rd row since that contains the proper headers.
Is it always possible to locate the row containing " time(s) " and make that particular the header when using the readtable function?
Or is there an alternative method available that is accomplish the tasks mentioned above?
edit: attached the csv file
2 commentaires
KALYAN ACHARJYA
le 24 Fév 2021
Modifié(e) : KALYAN ACHARJYA
le 24 Fév 2021
Please attach the data file
See detectImportOptions
Réponse acceptée
Mohammad Sami
le 24 Fév 2021
Modifié(e) : Mohammad Sami
le 24 Fév 2021
You can use the import options to change the behaviour of the readtable function.
a = delimitedTextImportOptions('VariableNamesLine',3,'DataLines',5);
% or
% a = detectImportOptions('myfile.csv','VariableNamesLine',3,'Range',5);
b = readtable('myfile.csv',a);
% use the following if excel file
% a = detectImportOptions('testfile.xlsx','VariableNamesRange','A3','DataRange','A5');
6 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Spreadsheets dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!