Skip to content

Commit 0555ef9

Browse files
Revert permutation to not use abs function
1 parent daf00b8 commit 0555ef9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frouros/utils/stats.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,5 +262,5 @@ def permutation( # pylint: disable=too-many-arguments,too-many-locals
262262
iterable=tqdm(permuted_data) if verbose else permuted_data,
263263
).get()
264264

265-
# FIXME: explore requirement of abs in permuted_statistic # pylint: disable=fixme
266-
return np.abs(permuted_statistics)
265+
# FIXME: explore if abs must be used in permuted_statistic # pylint: disable=fixme
266+
return permuted_statistics

0 commit comments

Comments
 (0)