Plot large CSV files with timestamp

5 visualizaciones (últimos 30 días)
Ancalagon8
Ancalagon8 el 21 de Nov. de 2018
Comentada: Walter Roberson el 21 de Nov. de 2018
I have a large csv file and try to load it into MATLAB and plot it with timestamp. My release is 2016b and i have 8gb of RAM.
My code starts like this
ds = tabularTextDatastore('2018-11-18.csv','TreatAsMissing','NA')
data = preview(ds);
whos data
data(:,1:7) % Look at first 7 variables
testdata = read(ds)
  2 comentarios
Jan
Jan el 21 de Nov. de 2018
What is your question?
Ancalagon8
Ancalagon8 el 21 de Nov. de 2018
I need help loading and plotting my large csv file with timestamp.

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 21 de Nov. de 2018
strcat the first two columns together with a blank between . datetime the result with an InputFormat parameter , which is required for this purpose because datetime cannot figure out fractions of a second by itself .
Now that you have timestamps and values you can prepare to plot . I think your release permitted using datetime as the X axis .
  4 comentarios
Ancalagon8
Ancalagon8 el 21 de Nov. de 2018
and testdata is my file?
Walter Roberson
Walter Roberson el 21 de Nov. de 2018
Like you posted,
testdata = read(ds);

Iniciar sesión para comentar.

Categorías

Más información sobre Graphics Object Identification en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by