Skip to content

DOC: read_html docstring update link to read_csv and infer_types mention #8605

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions pandas/io/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -786,10 +786,7 @@ def read_html(io, match='.+', flavor=None, header=None, index_col=None,
latest information on table attributes for the modern web.

parse_dates : bool, optional
See :func:`~pandas.io.parsers.read_csv` for more details. In 0.13, this
parameter can sometimes interact strangely with ``infer_types``. If you
get a large number of ``NaT`` values in your results, consider passing
``infer_types=False`` and manually converting types afterwards.
See :func:`~pandas.read_csv` for more details.

tupleize_cols : bool, optional
If ``False`` try to parse multiple header rows into a
Expand Down Expand Up @@ -837,7 +834,7 @@ def read_html(io, match='.+', flavor=None, header=None, index_col=None,

See Also
--------
pandas.io.parsers.read_csv
pandas.read_csv
"""
if infer_types is not None:
warnings.warn("infer_types has no effect since 0.15", FutureWarning)
Expand Down