Series.corr()
pandas.Series.corr
-
Series.corr(other, method='pearson', min_periods=None)
[source] -
Compute correlation with
other
Series, excluding missing valuesParameters: other : Series
method : {‘pearson’, ‘kendall’, ‘spearman’}
- pearson : standard correlation coefficient
- kendall : Kendall Tau correlation coefficient
- spearman : Spearman rank correlation
min_peri