readtable bug - if file has only one line, then readtable throws error ONLY if ReadRowNames = 1

2 次查看(过去 30 天)
Consider a tab-delimited file with only a header line (no data otherwise)
e.g.
m.txt:
name<tab>age
Then
readtable('m.txt', 'FileType', 'text', 'Delimiter', '\t', 'ReadVariableNames', 1 , 'ReadRowNames', 0)
returns an empty table, like it is supposed to.
However
readtable('m.txt', 'FileType', 'text', 'Delimiter', '\t', 'ReadVariableNames', 1 , 'ReadRowNames', 1)
throws an error.

回答(1 个)

Peter Perkins
Peter Perkins 2015-9-21
cmo, you are correct, thank you for finding this bug. I will make a note to have it fixed. For the time being, you can read in the file with ReadRowNames set to false, and then assign the row names and delete the string variable.

类别

Help CenterFile Exchange 中查找有关 Whos 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by