You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
298 B
8 lines
298 B
1 year ago
|
from pandas.core.groupby.base import transformation_kernels
|
||
|
|
||
|
# There is no Series.cumcount or DataFrame.cumcount
|
||
|
series_transform_kernels = [
|
||
|
x for x in sorted(transformation_kernels) if x != "cumcount"
|
||
|
]
|
||
|
frame_transform_kernels = [x for x in sorted(transformation_kernels) if x != "cumcount"]
|