From 8745ee67669a55f49de2782a12fb28cacd634c17 Mon Sep 17 00:00:00 2001 From: kraktus <56031107+kraktus@users.noreply.github.com> Date: Tue, 10 Oct 2023 18:21:26 +0200 Subject: [PATCH] `corr()`: fix `CI95%` column name in returned dataframe (#382) --- pingouin/correlation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pingouin/correlation.py b/pingouin/correlation.py index 74a5a027..af4fdb1a 100644 --- a/pingouin/correlation.py +++ b/pingouin/correlation.py @@ -412,7 +412,7 @@ def corr(x, y, alternative="two-sided", method="pearson", **kwargs): * ``'n'``: Sample size (after removal of missing values) * ``'outliers'``: number of outliers, only if a robust method was used * ``'r'``: Correlation coefficient - * ``'CI95'``: 95% parametric confidence intervals around :math:`r` + * ``'CI95%'``: 95% parametric confidence intervals around :math:`r` * ``'p-val'``: p-value * ``'BF10'``: Bayes Factor of the alternative hypothesis (only for Pearson correlation) * ``'power'``: achieved power of the test with an alpha of 0.05.