mlr_learners_dens.nonpar: Density Nonparametric Learner

Description Dictionary Super classes Methods References See Also Examples

Description

A mlr3proba::LearnerDens implementing nonparametric density estimation from package sm. Calls sm::sm.density().

Dictionary

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

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

Super classes

mlr3::Learner -> mlr3proba::LearnerDens -> LearnerDensNonparametric

Methods

Public methods

Inherited methods

Method new()

Creates a new instance of this R6 class.

Usage
LearnerDensNonparametric$new()

Method clone()

The objects of this class are cloneable with this method.

Usage
LearnerDensNonparametric$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

References

Bowman, A.W. and Azzalini, A. (1997). Applied Smoothing Techniques for Data Analysis: the Kernel Approach with S-Plus Illustrations. Oxford University Press, Oxford.

See Also

Dictionary of Learners: mlr3::mlr_learners

Examples

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

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

mlr3learners/mlr3learners.sm documentation built on July 31, 2020, 9:31 a.m.