Skip to content

Commit a2bde20

Browse files
committed
Fixed error called out by validation script
1 parent 38e5787 commit a2bde20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/window.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ def skew(self, **kwargs):
923923
>>> arr = [1, 2, 3, 4, 5]
924924
>>> import scipy.stats
925925
>>> scipy.stats.kurtosis(arr, bias=False)
926-
-1.200000000000000
926+
-1.2000000000000004
927927
928928
>>> df = pd.DataFrame(arr)
929929
>>> df.rolling(5).kurt()

0 commit comments

Comments
 (0)