Description Dictionary Super classes Methods References See Also Examples
A mlr3proba::LearnerDens implementing plug-in KDE from package
plugdensity.
Calls plugdensity::plugin.density()
.
This Learner can be instantiated via the dictionary
mlr_learners or with the associated sugar function lrn()
:
1 2 | mlr_learners$get("dens.plug")
lrn("dens.plug")
|
mlr3::Learner
-> mlr3proba::LearnerDens
-> LearnerDensPlugin
new()
Creates a new instance of this R6 class.
LearnerDensPlugin$new()
clone()
The objects of this class are cloneable with this method.
LearnerDensPlugin$clone(deep = FALSE)
deep
Whether to make a deep clone.
J. Engel, Eva Herrmann and Theo Gasser (1994). An iterative bandwidth selector for kernel estimation of densities and their derivatives. Journal of Nonparametric Statistics 4, 21–34.
Dictionary of Learners: mlr3::mlr_learners
1 2 3 4 5 6 7 | if (requireNamespace("plugdensity")) {
learner = mlr3::lrn("dens.plug")
print(learner)
# available parameters:
learner$param_set$ids()
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.