Skip to content
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

DOC: fix SA01 for pandas.errors.AttributeConflictWarning #60367

Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion ci/code_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.core.resample.Resampler.std SA01" \
-i "pandas.core.resample.Resampler.transform PR01,RT03,SA01" \
-i "pandas.core.resample.Resampler.var SA01" \
-i "pandas.errors.AttributeConflictWarning SA01" \
-i "pandas.errors.ChainedAssignmentError SA01" \
-i "pandas.errors.DuplicateLabelError SA01" \
-i "pandas.errors.IntCastingNaNError SA01" \
Expand Down
6 changes: 6 additions & 0 deletions pandas/errors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,12 @@ class AttributeConflictWarning(Warning):
name than the existing index on an HDFStore or attempting to append an index with a
different frequency than the existing index on an HDFStore.

See Also
--------
HDFStore : Dict-like IO interface for storing pandas objects in PyTables.
DataFrame.to_hdf : Write the contained data to an HDF5 file using HDFStore.
read_hdf : Read from an HDF5 file into a DataFrame.

Examples
--------
>>> idx1 = pd.Index(["a", "b"], name="name1")
Expand Down
Loading