diff options
author | Suraj Yerramilli | 2016-01-07 20:58:06 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2016-01-07 20:58:06 +0530 |
commit | d6633662a7381f378e11d63ab6c327b3808ab697 (patch) | |
tree | d8a32d7ab7b9e6529c118a673f63221e199d17a2 /man | |
parent | 2b6596a54d890fa8a7e0fe38e64a2eedf152a850 (diff) | |
download | SysID-R-code-d6633662a7381f378e11d63ab6c327b3808ab697.tar.gz SysID-R-code-d6633662a7381f378e11d63ab6c327b3808ab697.tar.bz2 SysID-R-code-d6633662a7381f378e11d63ab6c327b3808ab697.zip |
changed default plot engine to ggplot2
Diffstat (limited to 'man')
-rw-r--r-- | man/plot.idframe.Rd | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/man/plot.idframe.Rd b/man/plot.idframe.Rd index 3c90cf9..cd92f37 100644 --- a/man/plot.idframe.Rd +++ b/man/plot.idframe.Rd @@ -4,17 +4,16 @@ \alias{plot.idframe} \title{Plotting idframe objects} \usage{ -\method{plot}{idframe}(x, par = list(mar = c(3, 4, 2, 2)), - col = "steelblue", ...) +\method{plot}{idframe}(x, col = "steelblue", lwd = 0.5) } \arguments{ -\item{x}{an object of class \code{idframe}} - -\item{par}{a list of arguments passed to par() before plotting.} +\item{x}{an \code{idframe} object} \item{col}{line color, to be passed to plot.(Default=\code{"steelblue"})} -\item{...}{additional arguments to be passed to the \code{tfplot} function} +\item{lwd}{line width, in millimeters(Default=\code{0.5})} + +\item{par}{a list of arguments passed to par() before plotting.} } \description{ Plotting method for objects inherting from class \code{idframe} @@ -24,7 +23,4 @@ data(cstr) plot(cstr,col="blue") } -\seealso{ -\code{\link[tfplot]{tfplot}} -} |