diff --git a/pandas/core/series.py b/pandas/core/series.py index 006a98a6cddcb..aaaeadc0cf618 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -1692,6 +1692,10 @@ def count(self, level=None): int or Series (if level specified) Number of non-null values in the Series. + See Also + -------- + DataFrame.count : Count non-NA cells for each column or row. + Examples -------- >>> s = pd.Series([0.0, 1.0, np.nan]) @@ -2222,6 +2226,12 @@ def corr(self, other, method="pearson", min_periods=None) -> float: float Correlation with other. + See Also + -------- + DataFrame.corr : Compute pairwise correlation between columns. + DataFrame.corrwith : Compute pairwise correlation with another + DataFrame or Series. + Examples -------- >>> def histogram_intersection(a, b): @@ -2264,6 +2274,10 @@ def cov(self, other, min_periods=None) -> float: Covariance between Series and other normalized by N-1 (unbiased estimator). + See Also + -------- + DataFrame.cov : Compute pairwise covariance of columns. + Examples -------- >>> s1 = pd.Series([0.90010907, 0.13484424, 0.62036035])