File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,9 @@ class ParserWarning(Warning):
3434_parser_params = """Also supports optionally iterating or breaking of the file
3535into chunks.
3636
37+ Additional help can be found in the `online docs for IO Tools
38+ <http://pandas.pydata.org/pandas-docs/stable/io.html>`_.
39+
3740Parameters
3841----------
3942filepath_or_buffer : string or file handle / StringIO
@@ -133,9 +136,12 @@ class ParserWarning(Warning):
133136nrows : int, default None
134137 Number of rows of file to read. Useful for reading pieces of large files
135138iterator : boolean, default False
136- Return TextFileReader object
139+ Return TextFileReader object for iteration or getting chunks with ``get_chunk()``.
137140chunksize : int, default None
138- Return TextFileReader object for iteration
141+ Return TextFileReader object for iteration. `See IO Tools docs for more
142+ information
143+ <http://pandas.pydata.org/pandas-docs/stable/io.html#io-chunking>`_ on
144+ ``iterator`` and ``chunksize``.
139145skipfooter : int, default 0
140146 Number of lines at bottom of file to skip (Unsupported with engine='c')
141147converters : dict, default None
You can’t perform that action at this time.
0 commit comments