フィルターのクリア

How do I name the columns of my table by the names of row 1?

8 ビュー (過去 30 日間)
Amy Hughes
Amy Hughes 2020 年 2 月 3 日
編集済み: Amy Hughes 2020 年 2 月 3 日
I have inserted a table into matlab using this
pos=readtable("Pos_data.csv")
When I do this in R, the row names in row 1 become the columne names. However, in Matlab it does not do this. Please could you tell me how I name the columns based on the names in row 1 of the table ( as this is where the title of the columns are currently).
Thank-you,

採用された回答

Adam Danz
Adam Danz 2020 年 2 月 3 日
編集済み: Adam Danz 2020 年 2 月 3 日
Check out the ReadVariableNames property; set it to true.
pos=readtable("Pos_data.csv",'ReadVariableNames',true)

その他の回答 (1 件)

the cyclist
the cyclist 2020 年 2 月 3 日
Did you try reading the documentation page for readtable?
It seems that all you need to do is this:
pos=readtable("Pos_data.csv",'ReadVariableNames',true)
  1 件のコメント
Amy Hughes
Amy Hughes 2020 年 2 月 3 日
編集済み: Amy Hughes 2020 年 2 月 3 日
Thank-you, I was just reading this.

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

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by