Plot large CSV files with timestamp

조회 수: 5 (최근 30일)
Ancalagon8
Ancalagon8 2018년 11월 21일
댓글: Walter Roberson 2018년 11월 21일
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
Jan
Jan 2018년 11월 21일
What is your question?
Ancalagon8
Ancalagon8 2018년 11월 21일
I need help loading and plotting my large csv file with timestamp.

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2018년 11월 21일
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
Ancalagon8
Ancalagon8 2018년 11월 21일
and testdata is my file?
Walter Roberson
Walter Roberson 2018년 11월 21일
Like you posted,
testdata = read(ds);

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Graphics Object Identification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by