用法:
Series.cov(other, min_periods=None, ddof=1)
计算与系列的协方差,不包括缺失值。
- other:Series
用于计算协方差的系列。
- min_periods:整数,可选
获得有效结果所需的最少观察次数。
- ddof:整数,默认 1
Delta 自由度。计算中使用的除数是
N - ddof
,其中N
表示元素的数量。
- 浮点数
Series 和其他由 N-1(无偏估计器)归一化的协方差。
参数:
返回:
例子:
>>> s1 = pd.Series([0.90010907, 0.13484424, 0.62036035]) >>> s2 = pd.Series([0.12528585, 0.26962463, 0.51111198]) >>> s1.cov(s2) -0.01685762652715874
相关用法
- Python pandas.Series.combine_first用法及代码示例
- Python pandas.Series.convert_dtypes用法及代码示例
- Python pandas.Series.combine用法及代码示例
- Python pandas.Series.compare用法及代码示例
- Python pandas.Series.copy用法及代码示例
- Python pandas.Series.count用法及代码示例
- Python pandas.Series.corr用法及代码示例
- Python pandas.Series.cat.remove_categories用法及代码示例
- Python pandas.Series.cat用法及代码示例
- Python pandas.Series.cat.rename_categories用法及代码示例
- Python pandas.Series.cumsum用法及代码示例
- Python pandas.Series.cat.add_categories用法及代码示例
- Python pandas.Series.cumprod用法及代码示例
- Python pandas.Series.cummin用法及代码示例
- Python pandas.Series.cummax用法及代码示例
- Python pandas.Series.clip用法及代码示例
- Python pandas.Series.cat.remove_unused_categories用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
- Python pandas.Series.max用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.cov。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。