large csv import and split

조회 수: 4 (최근 30일)
Ancalagon8
Ancalagon8 2018년 2월 10일
편집: Ancalagon8 2025년 1월 6일
What i am trying to do is to import my file (weekly file size around 25GB) to process it. Microsoft excel doesn't open it of course.
How can i import my initial large file into 3 different columns?Thanks in advance!

답변 (1개)

Jeremy Hughes
Jeremy Hughes 2018년 2월 12일
With a file that's 25GB, you're going to need to break the data up. I recommend using
ds = tabularTextDatastore(filename)
while hasdata(ds)
T = read(ds)
end
You might have to tweak some settings, but this is the easiest way.

카테고리

Help CenterFile Exchange에서 LaTeX에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by