Skip to content

Commit 013de03

Browse files
authored
DOC: Unsuppress relevant dataframe in split-apply-combine guide (#42340)
1 parent 7b0a8f1 commit 013de03

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

doc/source/user_guide/groupby.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,6 @@ something different for each of the columns. Thus, using ``[]`` similar to
391391
getting a column from a DataFrame, you can do:
392392

393393
.. ipython:: python
394-
:suppress:
395394
396395
df = pd.DataFrame(
397396
{
@@ -402,7 +401,7 @@ getting a column from a DataFrame, you can do:
402401
}
403402
)
404403
405-
.. ipython:: python
404+
df
406405
407406
grouped = df.groupby(["A"])
408407
grouped_C = grouped["C"]

0 commit comments

Comments
 (0)