how to read a table from a CSV file with multiple header

14 ビュー (過去 30 日間)
Carlos Alonso
Carlos Alonso 2020 年 5 月 26 日
コメント済み: Carlos Alonso 2020 年 5 月 26 日
Hello
I want to read a table from a CSV file that has 2 row header.
Time Speed Temp
s kph degC
1 12 24
2 13 25
3 14 26
How I can read the above table and display it showing the 2 row header.?
I have tried to do on different ways but only 1 row header is shown (see below)
3×3 table
Time Speed Temp
____ _____ ____
1 12 24
2 13 25
3 14 26
However I would like to see table as below
3×3 table
Time Speed Temp
s kph degC
1 12 24
2 13 25
3 14 26

回答 (1 件)

Ruger28
Ruger28 2020 年 5 月 26 日
編集済み: Ruger28 2020 年 5 月 26 日
fname = 'MyCSV.csv';
headerlines = 2;
CSV_Data = dlmread(fname,',',headerlines,0); % filename, delimiter, row offset, column offset
% create table with pre-defined headers
TableHeaders = {'Time_s','Speed_kph','Temp_C'};
MyTable = table(CSV_Data(:,1),CSV_Data(:,1),CSV_Data(:,1),'VariableNames',TableHeaders);
  3 件のコメント
Ruger28
Ruger28 2020 年 5 月 26 日
Yes, sorry about that. I guess I read too fast.
Will you always know the headers, or are they dynamic?
Carlos Alonso
Carlos Alonso 2020 年 5 月 26 日
Hi , the header will change dynamically, as I will be adding and removing columns. Thanks

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeStatistics and Machine Learning Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by