forked from tlverse/sl3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLrnr_subset_covariates.Rd
66 lines (60 loc) · 2.43 KB
/
Lrnr_subset_covariates.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/Lrnr_subset_covariates.R
\docType{class}
\name{Lrnr_subset_covariates}
\alias{Lrnr_subset_covariates}
\title{Learner with Covariate Subsetting}
\format{\code{\link{R6Class}} object.}
\usage{
Lrnr_subset_covariates
}
\value{
Learner object with methods for training and prediction. See
\code{\link{Lrnr_base}} for documentation on learners.
}
\description{
This learner provides fitting procedures for subsetting covariates. It is a
convenience utility for reducing the number of covariates to be fit.
}
\section{Parameters}{
\describe{
\item{\code{...}}{Not currently used.}
}
}
\section{Common Parameters}{
Individual learners have their own sets of parameters. Below is a list of shared parameters, implemented by \code{Lrnr_base}, and shared
by all learners.
\describe{
\item{\code{covariates}}{A character vector of covariates. The learner will use this to subset the covariates for any specified task}
\item{\code{outcome_type}}{A \code{\link{variable_type}} object used to control the outcome_type used by the learner. Overrides the task outcome_type if specified}
\item{\code{...}}{All other parameters should be handled by the invidual learner classes. See the documentation for the learner class you're instantiating}
}
}
\seealso{
Other Learners: \code{\link{Custom_chain}},
\code{\link{Lrnr_HarmonicReg}}, \code{\link{Lrnr_arima}},
\code{\link{Lrnr_bartMachine}}, \code{\link{Lrnr_base}},
\code{\link{Lrnr_bilstm}}, \code{\link{Lrnr_condensier}},
\code{\link{Lrnr_cv}}, \code{\link{Lrnr_dbarts}},
\code{\link{Lrnr_define_interactions}},
\code{\link{Lrnr_expSmooth}},
\code{\link{Lrnr_glm_fast}}, \code{\link{Lrnr_glmnet}},
\code{\link{Lrnr_glm}}, \code{\link{Lrnr_grf}},
\code{\link{Lrnr_h2o_grid}}, \code{\link{Lrnr_hal9001}},
\code{\link{Lrnr_independent_binomial}},
\code{\link{Lrnr_lstm}}, \code{\link{Lrnr_mean}},
\code{\link{Lrnr_nnls}}, \code{\link{Lrnr_optim}},
\code{\link{Lrnr_pca}},
\code{\link{Lrnr_pkg_SuperLearner}},
\code{\link{Lrnr_randomForest}},
\code{\link{Lrnr_ranger}}, \code{\link{Lrnr_rpart}},
\code{\link{Lrnr_rugarch}}, \code{\link{Lrnr_sl}},
\code{\link{Lrnr_solnp_density}},
\code{\link{Lrnr_solnp}}, \code{\link{Lrnr_svm}},
\code{\link{Lrnr_tsDyn}}, \code{\link{Lrnr_xgboost}},
\code{\link{Pipeline}}, \code{\link{Stack}},
\code{\link{define_h2o_X}},
\code{\link{undocumented_learner}}
}
\concept{Learners}
\keyword{data}