用法:
Series.var(axis=None, skipna=None, level=None, ddof=1, numeric_only=None, **kwargs)
返回 DataFrame 的无偏方差。
默认由 N-1 归一化。这可以使用 ddof 参数进行更改
- axis: {index (0), columns(1)}:
要应用的函数的轴。
- skipna: bool, default True:
排除 NA/空值。如果整行/列为 NA,则结果将为 NA。
- ddof: int, default 1:
Delta 自由度。计算中使用的除数是 N - ddof,其中 N 表示元素的数量。
- 标量
参数:
返回:
注意:
当前不支持的参数是
level
和numeric_only
例子:
>>> import cudf >>> df = cudf.DataFrame({'a': [1, 2, 3, 4], 'b': [7, 8, 9, 10]}) >>> df.var() a 1.666667 b 1.666667 dtype: float64
相关用法
- Python cudf.Series.value_counts用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.Series.reindex用法及代码示例
- Python cudf.Series.interleave_columns用法及代码示例
- Python cudf.Series.min用法及代码示例
- Python cudf.Series.nlargest用法及代码示例
- Python cudf.Series.to_frame用法及代码示例
- Python cudf.Series.mask用法及代码示例
- Python cudf.Series.notnull用法及代码示例
- Python cudf.Series.isnull用法及代码示例
- Python cudf.Series.rmod用法及代码示例
- Python cudf.Series.map用法及代码示例
- Python cudf.Series.nsmallest用法及代码示例
- Python cudf.Series.data用法及代码示例
- Python cudf.Series.lt用法及代码示例
- Python cudf.Series.product用法及代码示例
- Python cudf.Series.add用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.var。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。