How to specify the format of just one column with readtable?
48 次查看(过去 30 天)
显示 更早的评论
Hi,
I am using readtable to read a .xls file with header information. All the columns in the table are formatted correctly, except one where I have time of day being written in hh:mm format.
Since I only need this information for further reference and no subsequent computations, I was trying to assign the format of this specific column to string by writting readtable(myxls,'Format','%s'). However, I am unable to assign the format to just this column (in this specific case, the 2nd column). Is there any way I can assign the format of this column, while leaving the other untouched, and without having to specify the format for every single table column?
Thanks in advance for all the advice you can provide.
2 个评论
Shameer Parmar
2016-6-22
can you please specify the input data along with its format and expected data with format..
For excel read, please use command xlsread()
采纳的回答
Guillaume
2016-6-23
编辑:Guillaume
2016-6-23
Please ignore Shameer's comment about using xlsread instead of readtable. They provide exactly the same support of xls file ( readtable calls xlsread internally), so if one does not work, the other won't work any better. If anythin readtable is better since it provides extra functions on top of xlsread.
Unfortunately, at the moment*, you cannot specify formats for columns of excel files. Note that the Format option only works for text files, not excel files.
In any case, matlab has read your time correctly, but as datenum. You can convert it to date strings with:
%t: your table
%timecolumn: the column that is read as datenum
t.timecolumn = datestr(t.timecolumn, 'HH:MM')
*Note: you will be able to specify individual formats in the next version of matlab.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!