8000 DOC: fix example with Timestamp/integer addition by jorisvandenbossche · Pull Request #26467 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC: fix example with Timestamp/integer addition #26467

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
DOC: fix example with Timestamp/integer addition
  • Loading branch information
jorisvandenbossche committed May 20, 2019
commit 72b5a13cb870c1579c4241be68d08b64f1ca5531
2 changes: 1 addition & 1 deletion doc/source/user_guide/indexing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@ You can also set using these same indexers.

.. ipython:: python

df.at[dates[-1] + 1, 0] = 7
df.at[dates[-1] + pd.Timedelta('1 day'), 0] = 7
df

Boolean indexing
Expand Down
0