You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
need to update the docs for read_csv to match the doc-string. Let's make sure they have the same text / examples as much as possible (and are in the same order and such).
In particular, the header option doesn't have header='infer' which is the default in the docs, but it exists in the doc-string.
Further, should show what this does:
if kwds.get('header', 'infer') == 'infer':
kwds['header'] = 0 if kwds.get('names') is None else None
meaning if the the header kw is not specified, this it is set to the first line if no names are specified, else None.
The text was updated successfully, but these errors were encountered:
Updated IO Tools documentation for read_csv() and read_table() to be consistent with the doc-string
and reorded keyword arguements to group them more logically. Also updated concat docs in merging.rst
to be consistent with doc-string.
Updated IO Tools documentation for read_csv() and read_table() to be consistent with the doc-string,
also reordered keywords to group them more logically. Also updated merging.rst docs for concat.
need to update the docs for
read_csv
to match the doc-string. Let's make sure they have the same text / examples as much as possible (and are in the same order and such).In particular, the
header
option doesn't haveheader='infer'
which is the default in the docs, but it exists in the doc-string.Further, should show what this does:
meaning if the the
header
kw is not specified, this it is set to the first line if nonames
are specified, elseNone
.The text was updated successfully, but these errors were encountered: