diff options
author | Suraj Yerramilli | 2017-01-06 13:57:11 -0600 |
---|---|---|
committer | Suraj Yerramilli | 2017-01-06 13:57:11 -0600 |
commit | c405f74cc52361b4157bc46041e2182b07d00359 (patch) | |
tree | 0494124c59f01b782a15f203d706c0b35f381362 | |
parent | 8e17eb5ee0fee8d3e2dac822b76eb79f808da0aa (diff) | |
download | SysID-R-code-c405f74cc52361b4157bc46041e2182b07d00359.tar.gz SysID-R-code-c405f74cc52361b4157bc46041e2182b07d00359.tar.bz2 SysID-R-code-c405f74cc52361b4157bc46041e2182b07d00359.zip |
minor changes
-rw-r--r-- | NAMESPACE | 15 | ||||
-rw-r--r-- | R/imports.R | 2 |
2 files changed, 15 insertions, 2 deletions
@@ -71,10 +71,23 @@ import(grid) import(polynom) import(reshape2) import(signal) -import(stats) import(tframe) importFrom(graphics,par) importFrom(graphics,plot) +importFrom(stats,acf) +importFrom(stats,ar) +importFrom(stats,arima) +importFrom(stats,ccf) +importFrom(stats,coef) +importFrom(stats,fitted) +importFrom(stats,lm) +importFrom(stats,mvfft) +importFrom(stats,predict) +importFrom(stats,resid) +importFrom(stats,rnorm) +importFrom(stats,start) +importFrom(stats,ts) +importFrom(stats,window) importFrom(utils,read.table) importFrom(utils,tail) importFrom(zoo,na.approx) diff --git a/R/imports.R b/R/imports.R index 656a4dc..c91d0e1 100644 --- a/R/imports.R +++ b/R/imports.R @@ -1,4 +1,4 @@ -#' @import stats +#' @importFrom stats predict resid arima ts start ar acf ccf coef fitted lm mvfft rnorm window #' @importFrom graphics par plot #' @importFrom utils read.table tail #' @import grid |