Skip to content

Commit 0bed24b

Browse files
committed
Fix column C spacing
1 parent 5396a3d commit 0bed24b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/groupby/groupby.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2322,7 +2322,7 @@ def first(self, numeric_only: bool = False, min_count: int = -1):
23222322
23232323
Examples
23242324
--------
2325-
>>> df = pd.DataFrame(dict(A=[1, 1, 3], B=[None, 5, 6], C=[1,2,3],
2325+
>>> df = pd.DataFrame(dict(A=[1, 1, 3], B=[None, 5, 6], C=[1, 2, 3],
23262326
... D=['3/11/2000', '3/12/2000', '3/13/2000']))
23272327
>>> df['D'] = pd.to_datetime(df['D'])
23282328
>>> df.groupby("A").first()

0 commit comments

Comments
 (0)