Skip to content

Commit f42c2cb

Browse files
Remove non-used z-score function
1 parent 6b19761 commit f42c2cb

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

frouros/utils/stats.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -263,22 +263,3 @@ def permutation( # pylint: disable=too-many-arguments,too-many-locals
263263
).get()
264264

265265
return permuted_statistics
266-
267-
268-
def z_score(
269-
value: np.ndarray,
270-
mean: float,
271-
std: float,
272-
) -> np.ndarray:
273-
"""Z-score method.
274-
275-
:param value: value to use to compute the z-score
276-
:type value: np.ndarray
277-
:param mean: mean value
278-
:type mean: float
279-
:param std: standard deviation value
280-
:type std: float
281-
:return: z-score
282-
:rtype: np.ndarray
283-
"""
284-
return (value - mean) / std

0 commit comments

Comments
 (0)