mlr_learners_dens.mixed: Density Mixed Data Kernel Learner

Description Dictionary Super classes Methods References See Also Examples

Description

A mlr3proba::LearnerDens implementing npudens from package np. Calls np::npudens().

Dictionary

This Learner can be instantiated via the dictionary mlr_learners or with the associated sugar function lrn():

1
2
mlr_learners$get("dens.mixed")
lrn("dens.mixed")

Super classes

mlr3::Learner -> mlr3proba::LearnerDens -> LearnerDensMixed

Methods

Public methods

Inherited methods

Method new()

Creates a new instance of this R6 class.

Usage
LearnerDensMixed$new()

Method clone()

The objects of this class are cloneable with this method.

Usage
LearnerDensMixed$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

References

Li, Q. and J.S. Racine (2003), “Nonparametric estimation of distributions with categorical and continuous data,” Journal of Multivariate Analysis, 86, 266-292.

See Also

Dictionary of Learners: mlr3::mlr_learners

Examples

1
2
3
4
5
6
7
if (requireNamespace("np")) {
  learner = mlr3::lrn("dens.mixed")
  print(learner)

  # available parameters:
  learner$param_set$ids()
}

mlr3learners/mlr3learners.np documentation built on July 29, 2020, 3:17 a.m.