PipeOpmissMDA_MFA_A {NADIA}R Documentation

PipeOpmissMDA_MFA_A

Description

Implements MFA methods as mlr3 pipeline in A approche , more about MFA missMDA_MFA 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_MFAimputation_A

Methods

Public methods

Inherited methods

Method new()

Usage
PipeOpMissMDA_MFA_A$new(
  id = "impute_missMDA_MFA_A",
  ncp = 2,
  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_MFA_A$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Examples



 # Using debug learner for example purpose

  graph <- PipeOpMissMDA_MFA_A$new() %>>% LearnerClassifDebug$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]