summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuraj Yerramilli2015-06-06 10:10:15 +0530
committerSuraj Yerramilli2015-06-06 10:10:15 +0530
commita48980a3490527bff9392ea98d86b3bd10d366fa (patch)
treec116bdaa82049f0c88281ded3f625b00f9da2110
parent581e21dd0af7dbe3c5db1e67c01e7f4561d63970 (diff)
downloadSysID-R-code-a48980a3490527bff9392ea98d86b3bd10d366fa.tar.gz
SysID-R-code-a48980a3490527bff9392ea98d86b3bd10d366fa.tar.bz2
SysID-R-code-a48980a3490527bff9392ea98d86b3bd10d366fa.zip
Minor changes
-rw-r--r--R/idframe.R3
-rw-r--r--man/plot.idframe.Rd2
2 files changed, 3 insertions, 2 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,...)
}
}
diff --git a/man/plot.idframe.Rd b/man/plot.idframe.Rd
index 8683d70..f9c6a19 100644
--- a/man/plot.idframe.Rd
+++ b/man/plot.idframe.Rd
@@ -9,7 +9,7 @@
\arguments{
\item{object}{an object of class \code{idframe}}
-\item{...}{additional arguments to be passed to the \code{plot} function}
+\item{...}{additional arguments to be passed to the \code{tfplot} function}
}
\description{
Plotting method for objects inherting from class \code{idframe}