Skip to content

Commit 484bd32

Browse files
committed
fix: add missings property to FSelectorRcpp packages
1 parent 36cadfe commit 484bd32

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

R/FilterInformationGain.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ FilterInformationGain = R6Class("FilterInformationGain",
7272
),
7373

7474
private = list(
75+
.get_properties = function() {
76+
"missings"
77+
},
78+
7579
.calculate = function(task, nfeat) {
7680
pv = self$param_set$values
7781
pv$type = pv$type %??% "infogain"

R/FilterRelief.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ FilterRelief = R6Class("FilterRelief",
5454
),
5555

5656
private = list(
57+
.get_properties = function() {
58+
"missings"
59+
},
60+
5761
.calculate = function(task, nfeat) {
5862
pv = self$param_set$values
5963

0 commit comments

Comments
 (0)