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 812d4f7 commit 3aed420Copy full SHA for 3aed420
pandas/core/window/expanding.py
@@ -1138,11 +1138,12 @@ def quantile(
1138
when the desired quantile lies between two data points `i` and `j`:
1139
1140
* linear: `i + (j - i) * fraction`, where `fraction` is the
1141
- fractional part of the index surrounded by `i` and `j`.
+ fractional part of the index surrounded by `i` and `j`.
1142
* lower: `i`.
1143
* higher: `j`.
1144
* nearest: `i` or `j` whichever is nearest.
1145
* midpoint: (`i` + `j`) / 2.
1146
+
1147
numeric_only : bool, default False
1148
Include only float, int, boolean columns.
1149
0 commit comments