diff options
author | Suraj Yerramilli | 2017-01-06 17:15:39 -0600 |
---|---|---|
committer | Suraj Yerramilli | 2017-01-06 17:15:39 -0600 |
commit | a4cec768a4ed5fe4355a03340af544f2f8a6ba0c (patch) | |
tree | a3ca404593ccc4a2ea81fdaf64be0cac7efad18c /man | |
parent | 5f0a48d074abe1785b7a98deb2ecff2b90beca33 (diff) | |
download | SysID-R-code-a4cec768a4ed5fe4355a03340af544f2f8a6ba0c.tar.gz SysID-R-code-a4cec768a4ed5fe4355a03340af544f2f8a6ba0c.tar.bz2 SysID-R-code-a4cec768a4ed5fe4355a03340af544f2f8a6ba0c.zip |
S3 methods consistency part 1
Diffstat (limited to 'man')
-rw-r--r-- | man/predict.estpoly.Rd | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/man/predict.estpoly.Rd b/man/predict.estpoly.Rd index 4c19ed5..53371e6 100644 --- a/man/predict.estpoly.Rd +++ b/man/predict.estpoly.Rd @@ -4,16 +4,18 @@ \alias{predict.estpoly} \title{Predictions of identified model} \usage{ -\method{predict}{estpoly}(x, newdata = NULL, nahead = 1) +\method{predict}{estpoly}(object, newdata = NULL, nahead = 1, ...) } \arguments{ -\item{x}{\code{estpoly} object containing the identified model} +\item{object}{\code{estpoly} object containing the identified model} \item{newdata}{optional dataset to be used for predictions. If not supplied, predictions are made on the training set.} \item{nahead}{number of steps ahead at which to predict (Default:1). For infinite- step ahead predictions or pure simulation, supply \code{Inf}.} + +\item{\ldots}{other arguments} } \value{ Time-series containing the predictions |