A simple Dictionary
storing objects of class PipeOp
.
Each PipeOp
has an associated help page, see mlr_pipeops_[id]
.
Format
R6Class
object inheriting from mlr3misc::Dictionary
.
Fields
Fields inherited from Dictionary
, as well as:
metainf
::environment
Environment that stores themetainf
argument of the$add()
method. Only for internal use.
Methods
Methods inherited from Dictionary
, as well as:
add(key, value, metainf = NULL)
(character(1)
,R6ClassGenerator
,NULL
|list
)
Adds constructorvalue
to the dictionary with keykey
, potentially overwriting a previously stored item. Ifmetainf
is notNULL
(the default), it must be alist
of arguments that will be given to thevalue
constructor (i.e.value$new()
) when it needs to be constructed foras.data.table
PipeOp
listing.
S3 methods
as.data.table(dict)
Dictionary
->data.table::data.table
Returns adata.table
with columnskey
(character
),packages
(character
),input.num
(integer
),output.num
(integer
),input.type.train
(character
),input.type.predict
(character
),output.type.train
(character
),output.type.predict
(character
).
See also
Other mlr3pipelines backend related:
Graph
,
PipeOp
,
PipeOpTargetTrafo
,
PipeOpTaskPreproc
,
PipeOpTaskPreprocSimple
,
mlr_graphs
,
mlr_pipeops_updatetarget
Other PipeOps:
PipeOp
,
PipeOpEnsemble
,
PipeOpImpute
,
PipeOpTargetTrafo
,
PipeOpTaskPreproc
,
PipeOpTaskPreprocSimple
,
mlr_pipeops_adas
,
mlr_pipeops_blsmote
,
mlr_pipeops_boxcox
,
mlr_pipeops_branch
,
mlr_pipeops_chunk
,
mlr_pipeops_classbalancing
,
mlr_pipeops_classifavg
,
mlr_pipeops_classweights
,
mlr_pipeops_colapply
,
mlr_pipeops_collapsefactors
,
mlr_pipeops_colroles
,
mlr_pipeops_copy
,
mlr_pipeops_datefeatures
,
mlr_pipeops_encode
,
mlr_pipeops_encodeimpact
,
mlr_pipeops_encodelmer
,
mlr_pipeops_featureunion
,
mlr_pipeops_filter
,
mlr_pipeops_fixfactors
,
mlr_pipeops_histbin
,
mlr_pipeops_ica
,
mlr_pipeops_imputeconstant
,
mlr_pipeops_imputehist
,
mlr_pipeops_imputelearner
,
mlr_pipeops_imputemean
,
mlr_pipeops_imputemedian
,
mlr_pipeops_imputemode
,
mlr_pipeops_imputeoor
,
mlr_pipeops_imputesample
,
mlr_pipeops_kernelpca
,
mlr_pipeops_learner
,
mlr_pipeops_learner_pi_cvplus
,
mlr_pipeops_learner_quantiles
,
mlr_pipeops_missind
,
mlr_pipeops_modelmatrix
,
mlr_pipeops_multiplicityexply
,
mlr_pipeops_multiplicityimply
,
mlr_pipeops_mutate
,
mlr_pipeops_nearmiss
,
mlr_pipeops_nmf
,
mlr_pipeops_nop
,
mlr_pipeops_ovrsplit
,
mlr_pipeops_ovrunite
,
mlr_pipeops_pca
,
mlr_pipeops_proxy
,
mlr_pipeops_quantilebin
,
mlr_pipeops_randomprojection
,
mlr_pipeops_randomresponse
,
mlr_pipeops_regravg
,
mlr_pipeops_removeconstants
,
mlr_pipeops_renamecolumns
,
mlr_pipeops_replicate
,
mlr_pipeops_rowapply
,
mlr_pipeops_scale
,
mlr_pipeops_scalemaxabs
,
mlr_pipeops_scalerange
,
mlr_pipeops_select
,
mlr_pipeops_smote
,
mlr_pipeops_smotenc
,
mlr_pipeops_spatialsign
,
mlr_pipeops_subsample
,
mlr_pipeops_targetinvert
,
mlr_pipeops_targetmutate
,
mlr_pipeops_targettrafoscalerange
,
mlr_pipeops_textvectorizer
,
mlr_pipeops_threshold
,
mlr_pipeops_tomek
,
mlr_pipeops_tunethreshold
,
mlr_pipeops_unbranch
,
mlr_pipeops_updatetarget
,
mlr_pipeops_vtreat
,
mlr_pipeops_yeojohnson
Other Dictionaries:
mlr_graphs
Examples
library("mlr3")
mlr_pipeops$get("learner", lrn("classif.rpart"))
#> PipeOp: <classif.rpart> (not trained)
#> values: <xval=0>
#> Input channels <name [train type, predict type]>:
#> input [TaskClassif,TaskClassif]
#> Output channels <name [train type, predict type]>:
#> output [NULL,PredictionClassif]
# equivalent:
po("learner", learner = lrn("classif.rpart"))
#> PipeOp: <classif.rpart> (not trained)
#> values: <xval=0>
#> Input channels <name [train type, predict type]>:
#> input [TaskClassif,TaskClassif]
#> Output channels <name [train type, predict type]>:
#> output [NULL,PredictionClassif]
# all PipeOps currently in the dictionary:
as.data.table(mlr_pipeops)[, c("key", "input.num", "output.num", "packages")]
#> Key: <key>
#> key input.num output.num packages
#> <char> <int> <int> <list>
#> 1: adas 1 1 mlr3pipelines,smotefamily
#> 2: blsmote 1 1 mlr3pipelines,smotefamily
#> 3: boxcox 1 1 mlr3pipelines,bestNormalize
#> 4: branch 1 NA mlr3pipelines
#> 5: chunk 1 NA mlr3pipelines
#> 6: classbalancing 1 1 mlr3pipelines
#> 7: classifavg NA 1 mlr3pipelines,stats
#> 8: classweights 1 1 mlr3pipelines
#> 9: colapply 1 1 mlr3pipelines
#> 10: collapsefactors 1 1 mlr3pipelines
#> 11: colroles 1 1 mlr3pipelines
#> 12: copy 1 NA mlr3pipelines
#> 13: datefeatures 1 1 mlr3pipelines
#> 14: encode 1 1 mlr3pipelines,stats
#> 15: encodeimpact 1 1 mlr3pipelines
#> 16: encodelmer 1 1 mlr3pipelines,lme4,nloptr
#> 17: featureunion NA 1 mlr3pipelines
#> 18: filter 1 1 mlr3pipelines
#> 19: fixfactors 1 1 mlr3pipelines
#> 20: histbin 1 1 mlr3pipelines,graphics
#> 21: ica 1 1 mlr3pipelines,fastICA
#> 22: imputeconstant 1 1 mlr3pipelines
#> 23: imputehist 1 1 mlr3pipelines,graphics
#> 24: imputelearner 1 1 mlr3pipelines
#> 25: imputemean 1 1 mlr3pipelines
#> 26: imputemedian 1 1 mlr3pipelines,stats
#> 27: imputemode 1 1 mlr3pipelines
#> 28: imputeoor 1 1 mlr3pipelines
#> 29: imputesample 1 1 mlr3pipelines
#> 30: kernelpca 1 1 mlr3pipelines,kernlab
#> 31: learner 1 1 mlr3pipelines
#> 32: learner_cv 1 1 mlr3pipelines
#> 33: learner_pi_cvplus 1 1 mlr3pipelines
#> 34: learner_quantiles 1 1 mlr3pipelines
#> 35: missind 1 1 mlr3pipelines
#> 36: modelmatrix 1 1 mlr3pipelines,stats
#> 37: multiplicityexply 1 NA mlr3pipelines
#> 38: multiplicityimply NA 1 mlr3pipelines
#> 39: mutate 1 1 mlr3pipelines
#> 40: nearmiss 1 1 mlr3pipelines,themis
#> 41: nmf 1 1 mlr3pipelines,MASS,NMF
#> 42: nop 1 1 mlr3pipelines
#> 43: ovrsplit 1 1 mlr3pipelines
#> 44: ovrunite 1 1 mlr3pipelines
#> 45: pca 1 1 mlr3pipelines
#> 46: proxy NA 1 mlr3pipelines
#> 47: quantilebin 1 1 mlr3pipelines,stats
#> 48: randomprojection 1 1 mlr3pipelines
#> 49: randomresponse 1 1 mlr3pipelines
#> 50: regravg NA 1 mlr3pipelines
#> 51: removeconstants 1 1 mlr3pipelines
#> 52: renamecolumns 1 1 mlr3pipelines
#> 53: replicate 1 1 mlr3pipelines
#> 54: rowapply 1 1 mlr3pipelines
#> 55: scale 1 1 mlr3pipelines
#> 56: scalemaxabs 1 1 mlr3pipelines
#> 57: scalerange 1 1 mlr3pipelines
#> 58: select 1 1 mlr3pipelines
#> 59: smote 1 1 mlr3pipelines,smotefamily
#> 60: smotenc 1 1 mlr3pipelines,themis
#> 61: spatialsign 1 1 mlr3pipelines
#> 62: subsample 1 1 mlr3pipelines
#> 63: targetinvert 2 1 mlr3pipelines
#> 64: targetmutate 1 2 mlr3pipelines
#> 65: targettrafoscalerange 1 2 mlr3pipelines
#> 66: textvectorizer 1 1 mlr3pipelines,quanteda,stopwords
#> 67: threshold 1 1 mlr3pipelines
#> 68: tomek 1 1 mlr3pipelines,themis
#> 69: tunethreshold 1 1 mlr3pipelines,bbotk
#> 70: unbranch NA 1 mlr3pipelines
#> 71: vtreat 1 1 mlr3pipelines,vtreat
#> 72: yeojohnson 1 1 mlr3pipelines,bestNormalize
#> key input.num output.num packages