PipeOpVIM_regrImp {NADIA}R Documentation

PipeOpVIM_regrImp

Description

Implements Regression Imputation methods as mlr3 pipeline, more about RI autotune_VIM_regrImp.

Input and Output Channels

Input and output channels are inherited from PipeOpImpute.

Parameters

The parameters include inherited from ['PipeOpImpute'], as well as:

Super classes

mlr3pipelines::PipeOp -> mlr3pipelines::PipeOpImpute -> VIM_regrImp_imputation

Methods

Public methods

Inherited methods

Method new()

Usage
PipeOpVIM_regrImp$new(
  id = "impute_VIM_regrImp_B",
  robust = FALSE,
  mod_cat = FALSE,
  use_imputed = FALSE,
  out_file = NULL
)

Method clone()

The objects of this class are cloneable with this method.

Usage
PipeOpVIM_regrImp$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Examples

{
  graph <- PipeOpVIM_regrImp$new() %>>% mlr3learners::LearnerClassifGlmnet$new()
  graph_learner <- GraphLearner$new(graph)

  # Task with NA

  resample(tsk("pima"), graph_learner, rsmp("cv", folds = 3))
}

[Package NADIA version 0.4.2 Index]