Formatting exel import in readtable()

13 ビュー (過去 30 日間)
Akshayaa Pandiyan
Akshayaa Pandiyan 2022 年 10 月 3 日
コメント済み: Star Strider 2022 年 10 月 6 日
I have an excel file with char arrays and numerical data. I import the data using readtable(). I want all the data to be homogeneous, that is either all or none of them as cell array. Currently i import the table and search through the table and change the type using num2cell(). Is there a better way to import all the columns as cell arrays irrelavent of whether they are a string/double?
Edit: Attached is the file I want to load into matlab. I have columns of string and numbers(or num arrays). But it could be that some columns can be completely empty. If the entire column is empty, readtable reads the missing values as NaN (type: double). If one or more values is present in a column, then readtable read the missing values as {'0x0 char'}. I wanted to remove this ambiguity.

採用された回答

Star Strider
Star Strider 2022 年 10 月 3 日
It would help to have the Excel file to experiment with.
In its absence see the documentation on detectImportOptions and experiment with it.
  2 件のコメント
Akshayaa Pandiyan
Akshayaa Pandiyan 2022 年 10 月 6 日
Thanks Star, I looked into it and this worked
opts = detectImportOptions(fileName);
opts = setvartype(opts, 'char');
opts = setvaropts(opts, 'FillValue', '');
Star Strider
Star Strider 2022 年 10 月 6 日
As always, my pleasure!
An interesting solution!
I did not see the Excel file until just now. It seems as though you solved the problem, however if you need more help with it I will do what I can.

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by