From 0daa6c9053abab30d0c4d9614a4567444e4622fa Mon Sep 17 00:00:00 2001 From: kwinkunks Date: Mon, 4 Sep 2023 08:19:58 +0200 Subject: [PATCH] fix #53 again, sigh --- src/redflag/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redflag/utils.py b/src/redflag/utils.py index 1d5f2e7..0aca880 100644 --- a/src/redflag/utils.py +++ b/src/redflag/utils.py @@ -370,7 +370,7 @@ def is_standard_normal(a: ArrayLike, confidence: float=0.8) -> bool: bool: True if the feature appears to have a standard normal distribution. Example: - >>> a = np.random.normal(size=2500) + >>> a = np.random.normal(size=5000) >>> is_standard_normal(a, confidence=0.8) True >>> is_standard_normal(a + 1)