フィルターのクリア

TabularTextDataStore wont store more than 20000 rows

2 ビュー (過去 30 日間)
SkarletSam
SkarletSam 2020 年 10 月 21 日
コメント済み: Walter Roberson 2020 年 10 月 21 日
Im trying to import a large csv file (60,000 x 171). tabularTextDataStore is only storing up to 20,000 rows. Is there a more efficient way to import all of the data?

採用された回答

Kevin Gurney
Kevin Gurney 2020 年 10 月 21 日
The amount of data returned on each call to the read method of a TabularTextDatastore is controlled by the value of the ReadSize property.
If you want to read more than 20,000 rows on each call to read (20,000 is the default value), then you can adjust the value of ReadSize like so:
trainSet = tabularTextDatastore("data\trainingSet.csv");
trainSet.ReadSize = 60000; % You can adjust this value to your liking.
trainSet.TreatAsMissing = 'na';
trainSetR = read(trainSet)
  2 件のコメント
SkarletSam
SkarletSam 2020 年 10 月 21 日
It seems like TabularTextDatastore's read size has a max value of 45140
Walter Roberson
Walter Roberson 2020 年 10 月 21 日
There seems to be an internal BUFFER_UPPERLIMIT property that is set to 32 megabytes, with 64 megabytes used for HADOOP . I do not see any method to set that property.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by