Does not properly read csv file
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
alpedhuez
el 14 de Abr. de 2021
Respondida: Walter Roberson
el 14 de Abr. de 2021
I try to read the attached csv file using readtable. But the data does not seem to be read. What can be done?
0 comentarios
Respuesta aceptada
Walter Roberson
el 14 de Abr. de 2021
readcell() instead of readtable(). Your file mixes data types.
0 comentarios
Más respuestas (1)
Thomas Jensen
el 14 de Abr. de 2021
Hi,
Try to use readtable('test.csv','Format','%s,%s'). It will force the data to be treated as text.
Since you columns are mixing number and date values, it is better to keep it as char and post-process it later.
Ver también
Categorías
Más información sobre Data Import and Analysis en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!