Skip to content

Commit edfdf82

Browse files
committed
DOC: squash doc typos in indexing/reshaping
1 parent caefbf7 commit edfdf82

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/source/indexing.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ You can also set using these same indexers.
491491

492492
.. ipython:: python
493493
494-
df.at[6, 0] = 7
494+
df.at[dates[-1]+1, 0] = 7
495495
df
496496
497497
Boolean indexing

doc/source/reshaping.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ with the original DataFrame:
388388
dummies
389389
390390
391-
df[['data']].join(dummies)
391+
df[['data1']].join(dummies)
392392
393393
This function is often used along with discretization functions like ``cut``:
394394

@@ -401,4 +401,4 @@ This function is often used along with discretization functions like ``cut``:
401401
bins = [0, 0.2, 0.4, 0.6, 0.8, 1]
402402
403403
404-
get_dummies(cut(values, bins))
404+
get_dummies(cut(values, bins))

0 commit comments

Comments
 (0)