diff options
author | Suraj Yerramilli | 2015-05-26 10:12:11 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2015-05-26 10:12:11 +0530 |
commit | 4ca17a56eb623f41c84642242bec23cb3d44e663 (patch) | |
tree | 6d970050fea18d708767c11285af1bcb34cbc4a1 | |
parent | c3ba0944d53289bc04f44b95a672b3abcd9d3272 (diff) | |
download | SysID-R-code-4ca17a56eb623f41c84642242bec23cb3d44e663.tar.gz SysID-R-code-4ca17a56eb623f41c84642242bec23cb3d44e663.tar.bz2 SysID-R-code-4ca17a56eb623f41c84642242bec23cb3d44e663.zip |
Updated documentation
-rw-r--r-- | R/impulse.R | 2 | ||||
-rw-r--r-- | man/plot.impulseest.Rd | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/R/impulse.R b/R/impulse.R index 90b3fd4..50bd66e 100644 --- a/R/impulse.R +++ b/R/impulse.R @@ -35,7 +35,7 @@ impulseest <- function(data,M=30,K=0){ out <- list(coefficients=coef(fit),residuals=resid(fit),lags=K:(M+K), - x=colnames(data$input),y=colnames(data$output),se = se,df=df) + x=colnames(data$input),y=colnames(data$output),se = se) class(out) <- "impulseest" return(out) } diff --git a/man/plot.impulseest.Rd b/man/plot.impulseest.Rd index 910f53e..d5337bf 100644 --- a/man/plot.impulseest.Rd +++ b/man/plot.impulseest.Rd @@ -4,10 +4,12 @@ \alias{plot.impulseest} \title{Impulse Response Plots} \usage{ -\method{plot}{impulseest}(model) +\method{plot}{impulseest}(model, sig = 0.975) } \arguments{ \item{model}{an object of class \code{impulseest}} + +\item{sig}{Significance Limits (Default: \code{0.975})} } \description{ Plots the estimated IR Coefficients |