The mlr3 ecosystem has a new package mlr3inferr that allows to construct confidence intervals for the generalization error.
Feature Selection Wrapper
Feature selection wrappers can be found in the mlr3fselect packages. The goal is to find the best subset of features with respect to a performance measure in an iterative fashion.
library(mlr3verse)# retrieve tasktask =tsk("pima")# load learnerlearner =lrn("classif.rpart")# feature selection on the pima indians diabetes data setinstance =fselect(fselector =fs("sequential"),task = task,learner = learner,resampling =rsmp("holdout"),measure =msr("classif.ce"))
Warning in .__Codomain__maximization_to_minimization(self = self, private = private, : 'maximization_to_minimization' is deprecated.
Use 'direction' instead.
See help("Deprecated")
Warning in .__Codomain__maximization_to_minimization(self = self, private = private, : 'maximization_to_minimization' is deprecated.
Use 'direction' instead.
See help("Deprecated")
Warning in .__Codomain__maximization_to_minimization(self = self, private = private, : 'maximization_to_minimization' is deprecated.
Use 'direction' instead.
See help("Deprecated")
Warning in .__Codomain__maximization_to_minimization(self = self, private = private, : 'maximization_to_minimization' is deprecated.
Use 'direction' instead.
See help("Deprecated")
Warning in .__Codomain__maximization_to_minimization(self = self, private = private, : 'maximization_to_minimization' is deprecated.
Use 'direction' instead.
See help("Deprecated")
Warning in .__Codomain__maximization_to_minimization(self = self, private = private, : 'maximization_to_minimization' is deprecated.
Use 'direction' instead.
See help("Deprecated")
Warning in .__Codomain__maximization_to_minimization(self = self, private = private, : 'maximization_to_minimization' is deprecated.
Use 'direction' instead.
See help("Deprecated")
Warning in .__Codomain__maximization_to_minimization(self = self, private = private, : 'maximization_to_minimization' is deprecated.
Use 'direction' instead.
See help("Deprecated")