Read CSV into table but not all of the columns
조회 수: 58 (최근 30일)
이전 댓글 표시
I have a large CSV of ~200 MB with about 1 milion lines and 50 columns.
I need all of the lines, but only like 4-5 columns.
When I read the entire table with 'readtable' and then filter only the colums I need it takes about 10 seconds and more than 1GB of memory.
Is there a more efficient way to read only the columns I need?
Thanks!
답변 (2개)
Star Strider
2023년 5월 9일
Without at least an example of your .csv file it is difficult to determine that. One option (for both readtable and readmatrix) is the 'Range' name-value pair. There is no direct link, however you can search for it in the Spreadsheet Files section of the documentation. It is more fully explained in the DataRange documentation section of SpreadsheetImportOptions.
I am not sure if this is more efficient (I never timed it), however it is the only option that appears to exist for what you want to do.
댓글 수: 6
Sarah Gilmore
2023년 5월 9일
You can can actually read non-consecutive columns with SelectedVariableNames. For example, here's how you could read Param1 and Param3 from the example file:
opts = detectImportOptions("F.csv");
opts.SelectedVariableNames = ["Param1" "Param3"];
T = readtable("F.csv", opts)
I hope this helps.
Best,
Sarah
Stephen23
2023년 5월 9일
편집: Stephen23
2023년 5월 9일
First lets create a fake data file:
writetable(array2table(rand(1e5,50),'Variablenames',"V"+(1:50)),"test.csv")
Now lets try some different ways to import that data:
X = [5,23,42]; % the columns you want
tic
T0 = readtable("test.csv");
T0 = T0(:,X);
toc
tic
C = cell(1,50);
C(:) = {'%*f'};
C(X) = {'%f'};
T1 = readtable("test.csv", "Format",[C{:}]);
toc
tic
opts = detectImportOptions("test.csv", "filetype","delimitedtext");
opts.SelectedVariableNames = "V"+X;
T2 = readtable("test.csv", opts);
toc
Checking:
isequal(T0,T1,T2)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Large Files and Big Data에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!