forked from tlverse/sl3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLrnr_arima.Rd
63 lines (61 loc) · 2.3 KB
/
Lrnr_arima.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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/Lrnr_arima.R
\docType{class}
\name{Lrnr_arima}
\alias{Lrnr_arima}
\title{Univariate ARIMA Models}
\format{\code{\link{R6Class}} object.}
\usage{
Lrnr_arima
}
\value{
Learner object with methods for training and prediction. See
\code{\link{Lrnr_base}} for documentation on learners.
}
\description{
This learner supports autoregressive integrated moving average model for
univariate time-series.
}
\section{Parameters}{
\describe{
\item{\code{order=NULL}}{A specification of the non-seasonal part of the
ARIMA model: the three integer components (p, d, q) are the AR order, the
degree of differencing, and the MA order.}
\item{\code{seasonal=list(order=c(0,0,0) period=NA)}}{ A specification of
the seasonal part of the ARIMA model, plus the period (which defaults to
frequency(x)). This should be a list with components order and period, but
a specification of just a numeric vector of length 3 will be turned into a
suitable list with the specification as the order.}
\item{\code{n.ahead=NULL}}{ The forecast horizon. If not specified, returns
forecast of size \code{task$X}.}
}
}
\seealso{
Other Learners: \code{\link{Custom_chain}},
\code{\link{Lrnr_HarmonicReg}},
\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_subset_covariates}},
\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}