error in tall array tables due to missing data in end column of end row
3 次查看(过去 30 天)
显示 更早的评论
I have a csv file which looks something like this:
DATA_START
02/16/18 01:03:32.11,,4,
02/16/18 01:03:32.22,,4,
02/16/18 01:03:32.33,,5,
02/16/18 01:03:32.44,,5,
02/16/18 01:03:32.11,,0.4,
02/16/18 01:03:32.01,4,4,
02/16/18 01:03:32.02,,4,
02/16/18 01:03:32.03,,3,
02/16/18 01:03:32.04,7,0,
I have noticed that when I use data store and tall arrays (tt = tall(ds)), I get an error and tall array looks like:
tt =
M×4 tall table
date_time Var2 Var3 Var4
_________ ____ ____ ____
? ? ? ?
? ? ? ?
? ? ? ?
: : : :
: : : :
I have noticed that if I add a variable at the end row of the end column, this problem goes away, but as I am dealing with a lot of data files (some of which are too large to open) I need to be able to resolve this issue without having to manually change the file. Any idea how I can fix this?
2 个评论
Benjamin Kraus
2018-2-23
What error do you get? What code are you using to load the CSV file to a datastore?
回答(1 个)
Edric Ellis
2018-2-26
It sounds like you haven't got the format quite right for your datastore. I suspect you would encounter the same error if you called readall on your datastore. To work with datastore, you need to ensure that all the files are in the same format.
There's lots of information about how to set up the datastore to read tabular text (such as .csv) in the documentation.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Tall Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!