diff options
author | Suraj Yerramilli | 2015-06-06 10:10:15 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2015-06-06 10:10:15 +0530 |
commit | a48980a3490527bff9392ea98d86b3bd10d366fa (patch) | |
tree | c116bdaa82049f0c88281ded3f625b00f9da2110 /R/idframe.R | |
parent | 581e21dd0af7dbe3c5db1e67c01e7f4561d63970 (diff) | |
download | SysID-R-code-a48980a3490527bff9392ea98d86b3bd10d366fa.tar.gz SysID-R-code-a48980a3490527bff9392ea98d86b3bd10d366fa.tar.bz2 SysID-R-code-a48980a3490527bff9392ea98d86b3bd10d366fa.zip |
Minor changes
Diffstat (limited to 'R/idframe.R')
-rw-r--r-- | R/idframe.R | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/R/idframe.R b/R/idframe.R index ca533c0..94886af 100644 --- a/R/idframe.R +++ b/R/idframe.R @@ -72,7 +72,7 @@ idframe <- function(output=NULL,input=NULL, #' Plotting method for objects inherting from class \code{idframe} #' #' @param object an object of class \code{idframe} -#' @param ... additional arguments to be passed to the \code{plot} function +#' @param ... additional arguments to be passed to the \code{tfplot} function #' #' @examples #' data(distill) @@ -114,6 +114,7 @@ plot.idframe <- function(object,...){ } datats <- ts(data,start=object$t.start,end=object$t.end, frequency=floor(1/object$Ts)) + par(mar=c(3,4,3,2)) tfplot(datats,...) } } |