Skip to content

Commit

Permalink
fix #53 again, sigh
Browse files Browse the repository at this point in the history
  • Loading branch information
kwinkunks committed Sep 4, 2023
1 parent f962322 commit 0daa6c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redflag/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0daa6c9

Please sign in to comment.