Skip to content

Commit 3aed420

Browse files
committed
fix the validation errors
1 parent 812d4f7 commit 3aed420

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/window/expanding.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1138,11 +1138,12 @@ def quantile(
11381138
when the desired quantile lies between two data points `i` and `j`:
11391139
11401140
* linear: `i + (j - i) * fraction`, where `fraction` is the
1141-
fractional part of the index surrounded by `i` and `j`.
1141+
fractional part of the index surrounded by `i` and `j`.
11421142
* lower: `i`.
11431143
* higher: `j`.
11441144
* nearest: `i` or `j` whichever is nearest.
11451145
* midpoint: (`i` + `j`) / 2.
1146+
11461147
numeric_only : bool, default False
11471148
Include only float, int, boolean columns.
11481149

0 commit comments

Comments
 (0)