Read CSV into table but not all of the columns
49 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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!
Antworten (2)
Star Strider
am 9 Mai 2023
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 Kommentare
Sarah Gilmore
am 9 Mai 2023
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
am 9 Mai 2023
Bearbeitet: Stephen23
am 9 Mai 2023
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 Kommentare
Siehe auch
Kategorien
Mehr zu Large Files and Big Data finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!