PipeOpmissMDA_PCA_MCA_FMAD_A {NADIA}R Documentation

PipeOpmissMDA_PCA_MCA_FMAD_A

Description

Implements PCA, MCA, FMAD methods as mlr3 pipeline in approach A, more about methods missMDA_FMAD_MCA_PCA and missMDA.reuse

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 -> missMDA_MCA_PCA_FMAD_imputation_A

Methods

Public methods

Inherited methods

Method new()

Usage
PipeOpMissMDA_PCA_MCA_FMAD_A$new(
  id = "impute_missMDA_MCA_PCA_FMAD_A",
  optimize_ncp = TRUE,
  set_ncp = 2,
  ncp.max = 5,
  random.seed = NULL,
  maxiter = 998,
  coeff.ridge = 1,
  threshold = 1e-06,
  method = "Regularized",
  out_file = NULL
)

Method clone()

The objects of this class are cloneable with this method.

Usage
PipeOpMissMDA_PCA_MCA_FMAD_A$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Examples



 # Using debug learner for example purpose


  graph <- PipeOpMissMDA_PCA_MCA_FMAD_A$new() %>>% LearnerClassifDebug$new()
  graph_learner <- GraphLearner$new(graph)

  # Task with NA
  set.seed(1)
  resample(tsk("pima"), graph_learner, rsmp("cv", folds = 3))


[Package NADIA version 0.4.2 Index]