Series.
cov
Compute covariance with Series, excluding missing values.
New in version 3.3.0.
Series with which to compute the covariance.
Minimum number of observations needed to have a valid result.
Delta degrees of freedom. The divisor used in calculations is N - ddof, where N represents the number of elements.
N - ddof
N
New in version 3.4.0.
Covariance between Series and other
Examples
>>> from pyspark.pandas.config import set_option, reset_option >>> s1 = ps.Series([0.90010907, 0.13484424, 0.62036035]) >>> s2 = ps.Series([0.12528585, 0.26962463, 0.51111198]) >>> with ps.option_context("compute.ops_on_diff_frames", True): ... s1.cov(s2) -0.016857... >>> with ps.option_context("compute.ops_on_diff_frames", True): ... s1.cov(s2, ddof=2) -0.033715...