File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -169,6 +169,13 @@ skipfooter : int, default ``0``
169169 Number of lines at bottom of file to skip (unsupported with engine='c').
170170nrows : int, default ``None ``
171171 Number of rows of file to read. Useful for reading pieces of large files.
172+ low_memory : boolean, default ``True ``
173+ Internally process the file in chunks, resulting in lower memory use
174+ while parsing, but possibly mixed type inference. To ensure no mixed
175+ types either set ``False ``, or specify the type with the ``dtype `` parameter.
176+ Note that the entire file is read into a single DataFrame regardless,
177+ use the ``chunksize `` or ``iterator `` parameter to return the data in chunks.
178+ (Only valid with C parser)
172179
173180NA and Missing Data Handling
174181++++++++++++++++++++++++++++
Original file line number Diff line number Diff line change 220220warn_bad_lines : boolean, default True
221221 If error_bad_lines is False, and warn_bad_lines is True, a warning for each
222222 "bad line" will be output. (Only valid with C parser).
223+ low_memory : boolean, default True
224+ Internally process the file in chunks, resulting in lower memory use
225+ while parsing, but possibly mixed type inference. To ensure no mixed
226+ types either set False, or specify the type with the `dtype` parameter.
227+ Note that the entire file is read into a single DataFrame regardless,
228+ use the `chunksize` or `iterator` parameter to return the data in chunks.
229+ (Only valid with C parser)
223230
224231Returns
225232-------
You can’t perform that action at this time.
0 commit comments