summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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}