From 9512a4d8cc3f2abdb49cc24fc843d8f1627f1e96 Mon Sep 17 00:00:00 2001 From: Robert Gieseke Date: Tue, 5 Feb 2013 21:14:21 +0100 Subject: [PATCH] Change wording in `corr` doc string Not sure if this is the best option, another one might be: "Compute correlation between two Series" --- pandas/core/series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/series.py b/pandas/core/series.py index 09d125f2782e1..82ed811f377ae 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -1677,7 +1677,7 @@ def pretty_name(x): def corr(self, other, method='pearson', min_periods=None): """ - Compute correlation two Series, excluding missing values + Compute correlation to other Series, excluding missing values Parameters ----------