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 7bf6660 commit a2f1de1Copy full SHA for a2f1de1
pandas/core/frame.py
@@ -12148,8 +12148,7 @@ def _get_data() -> DataFrame:
12148
result.index = df.index
12149
return result
12150
12151
- # kurtosis excluded since groupby does not implement it
12152
- if df.shape[1] and name != "kurt":
+ if df.shape[1]:
12153
dtype = find_common_type(
12154
[block.values.dtype for block in df._mgr.blocks]
12155
)
0 commit comments