error in tall array tables due to missing data in end column of end row
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Benjamin Kraus
el 23 de Feb. de 2018
What error do you get? What code are you using to load the CSV file to a datastore?
Respuestas (1)
Edric Ellis
el 26 de Feb. de 2018
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.
6 comentarios
Ver también
Categorías
Más información sobre Tall Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!