We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 503dd56 commit 30fdd7dCopy full SHA for 30fdd7d
docs/user_guide/case_studies/football.rst
@@ -99,7 +99,8 @@ Using this dataframe we will now provide answers for miscellaneous questions. I
99
.. ipython:: python
100
101
CvsL.groupby("half").apply(
102
- lambda df: df.query("score_liverpool - score_chelsea == 1").index.length.sum()
+ lambda df: df.query("score_liverpool - score_chelsea == 1").index.length.sum(),
103
+ include_groups=False,
104
)
105
106
**What was the score at the 80 minute mark?**
docs/user_guide/case_studies/maintenance.rst
@@ -54,6 +54,7 @@ where the values are instances of :class:`pandas.arrays.IntervalArray`.
54
df["end"],
55
closed="left",
56
),
57
58
59
60
maintenance
0 commit comments