pandas.core.window.expanding.Expanding.skew#

Expanding.skew(numeric_only=False)[源代码][源代码]#

计算扩展的无偏斜度。

参数:
numeric_onlybool, 默认为 False

只包含浮点数、整数、布尔列。

Added in version 1.5.0.

返回:
Series 或 DataFrame

返回类型与原始对象相同,具有 np.float64 数据类型。

参见

scipy.stats.skew

概率密度的第三个矩。

Series.expanding

调用带有 Series 数据的扩展。

DataFrame.expanding

使用 DataFrames 调用扩展。

Series.skew

聚合序列的偏斜。

DataFrame.skew

聚合 DataFrame 的偏度。

备注

滚动计算至少需要三个点。

例子

>>> ser = pd.Series([-1, 0, 2, -1, 2], index=['a', 'b', 'c', 'd', 'e'])
>>> ser.expanding().skew()
a         NaN
b         NaN
c    0.935220
d    1.414214
e    0.315356
dtype: float64