We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b19761 commit f42c2cbCopy full SHA for f42c2cb
frouros/utils/stats.py
@@ -263,22 +263,3 @@ def permutation( # pylint: disable=too-many-arguments,too-many-locals
263
).get()
264
265
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