Skip to content

Commit 2635a7d

Browse files
committed
Fix PFI filter
1 parent 3019b33 commit 2635a7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

R/FilterPermutation.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ FilterPermutation = R6Class("FilterPermutation",
8484
packages = packages,
8585
param_set = param_set,
8686
label = "Permutation Score",
87-
man = "mlr3filters::mlr_filters_performance"
87+
man = "mlr3filters::mlr_filters_permutation"
8888
)
8989
}
9090
),
@@ -145,7 +145,7 @@ FilterPermutation = R6Class("FilterPermutation",
145145
delta = -delta
146146
}
147147

148-
if (!isTRUE(self$param_set$values$standardize)) {
148+
if (isTRUE(self$param_set$values$standardize)) {
149149
delta = delta / max(delta)
150150
}
151151

0 commit comments

Comments
 (0)