From 29e31bf88ac54e95704a176b74105a0da74c115d Mon Sep 17 00:00:00 2001 From: dominicshanshan Date: Wed, 23 Mar 2022 14:25:44 +0800 Subject: [PATCH] update comment on correlation --- python/cudf/cudf/core/series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cudf/cudf/core/series.py b/python/cudf/cudf/core/series.py index b11cc6bd8d9..67f999d6d2b 100644 --- a/python/cudf/cudf/core/series.py +++ b/python/cudf/cudf/core/series.py @@ -2378,7 +2378,7 @@ def cov(self, other, min_periods=None): >>> import cudf >>> ser1 = cudf.Series([0.9, 0.13, 0.62]) >>> ser2 = cudf.Series([0.12, 0.26, 0.51]) - >>> ser1.cov(ser2, method="pearson") + >>> ser1.cov(ser2) -0.015750000000000004 """