用法:
Rolling.var(ddof=1)
计算滚动方差。
此文档字符串是从 pandas.core.window.rolling.Rolling.var 复制而来的。
可能存在与 Dask 版本的一些不一致之处。
- ddof:整数,默认 1
Delta 自由度。计算中使用的除数是
N - ddof
,其中N
表示元素的数量。- *args:
为了 NumPy 的兼容性,不会对结果产生影响。
- engine:str,默认无(在 Dask 中不支持)
'cython'
:通过 cython 的 C-extensions 运行操作。'numba'
:通过来自 numba 的 JIT 编译代码运行操作。None
:默认为'cython'
或全局设置compute.use_numba
- engine_kwargs:dict,默认无(在 Dask 中不支持)
对于
'cython'
引擎,没有接受的engine_kwargs
对于
'numba'
引擎,引擎可以接受nopython
,nogil
和parallel
字典键。这些值必须是True
或False
。'numba'
引擎的默认engine_kwargs
是{'nopython': True, 'nogil': False, 'parallel': False}
- **kwargs:
为了 NumPy 的兼容性,不会对结果产生影响。
- Series或DataFrame
返回类型与
np.float64
dtype 的原始对象相同。
参数:
返回:
注意:
Series.var()
中使用的默认ddof
为 1 与numpy.var()
中的默认ddof
为 0 不同。滚动计算至少需要一个周期。
该实现容易受到浮点不精度的影响,如下例所示。
例子:
>>> s = pd.Series([5, 5, 6, 7, 5, 5, 5]) >>> s.rolling(3).var() 0 NaN 1 NaN 2 3.333333e-01 3 1.000000e+00 4 1.000000e+00 5 1.333333e+00 6 6.661338e-16 dtype: float64
相关用法
- Python dask.dataframe.rolling.Rolling.count用法及代码示例
- Python dask.dataframe.rolling.Rolling.min用法及代码示例
- Python dask.dataframe.rolling.Rolling.quantile用法及代码示例
- Python dask.dataframe.rolling.Rolling.std用法及代码示例
- Python dask.dataframe.rolling.Rolling.sum用法及代码示例
- Python dask.dataframe.rolling.Rolling.kurt用法及代码示例
- Python dask.dataframe.rolling.Rolling.mean用法及代码示例
- Python dask.dataframe.rolling.Rolling.median用法及代码示例
- Python dask.dataframe.read_table用法及代码示例
- Python dask.dataframe.read_hdf用法及代码示例
- Python dask.dataframe.read_json用法及代码示例
- Python dask.dataframe.read_fwf用法及代码示例
- Python dask.dataframe.read_sql_table用法及代码示例
- Python dask.dataframe.read_parquet用法及代码示例
- Python dask.dataframe.read_csv用法及代码示例
- Python dask.dataframe.reshape.get_dummies用法及代码示例
- Python dask.dataframe.read_orc用法及代码示例
- Python dask.dataframe.Series.apply用法及代码示例
- Python dask.dataframe.to_records用法及代码示例
- Python dask.dataframe.DataFrame.applymap用法及代码示例
注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 dask.dataframe.rolling.Rolling.var。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。