Import a spreadsheet with columns containing both string and numeric values using readtable()
显示 更早的评论
I have a spreadsheet I am trying to import with readtable(). Mostly, the import works perfectly. However, there is a single column of data that has both numeric values and strings in it. Matlab reads the numeric values but recodes the strings as 'NaN'.
So for example, in the Excel spreadsheet I have a column "Response = {5, 10, cat, 12}". However, Matlab reads this as "Response = [5 10 NaN 12]".
I would like Matlab to read it as a cell array with the values as they are in the .xlsx spreadsheet.
I suspect this is possible with spreadsheetImportOptions, but I'm not sure how.
Thanks!
file = 'rating_task_raw_21_02_17.xlsx';
Data.Task_Raw = readtable(file);
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!