summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuraj Yerramilli2016-01-07 21:02:33 +0530
committerSuraj Yerramilli2016-01-07 21:02:33 +0530
commit0075a24102261bda2f80cb0fa0ac063d9b9e6eec (patch)
treeaa54af21090b8a4c29f107c2dcdde7d9bc908904
parentd6633662a7381f378e11d63ab6c327b3808ab697 (diff)
downloadSysID-R-code-0075a24102261bda2f80cb0fa0ac063d9b9e6eec.tar.gz
SysID-R-code-0075a24102261bda2f80cb0fa0ac063d9b9e6eec.tar.bz2
SysID-R-code-0075a24102261bda2f80cb0fa0ac063d9b9e6eec.zip
final plot version
-rw-r--r--R/idframe.R8
-rw-r--r--man/plot.idframe.Rd6
2 files changed, 7 insertions, 7 deletions
diff --git a/R/idframe.R b/R/idframe.R
index 3a33151..9afc7fa 100644
--- a/R/idframe.R
+++ b/R/idframe.R
@@ -45,9 +45,9 @@ idframe <- function(output=NULL,input=NULL,Ts = 1,start=0,end=NULL,
#' Plotting method for objects inherting from class \code{idframe}
#'
#' @param x an \code{idframe} object
-#' @param par a list of arguments passed to par() before plotting.
#' @param col line color, to be passed to plot.(Default=\code{"steelblue"})
#' @param lwd line width, in millimeters(Default=\code{1})
+#' @param main the plot title. (Default = \code{NULL})
#'
#' @examples
#' data(cstr)
@@ -56,7 +56,7 @@ idframe <- function(output=NULL,input=NULL,Ts = 1,start=0,end=NULL,
#' @import ggplot2 reshape2
#'
#' @export
-plot.idframe <- function(x,col="steelblue",lwd=1){
+plot.idframe <- function(x,col="steelblue",lwd=1,main=NULL){
if(nInputSeries(x)==0){
data <- outputData(x)
} else if(nOutputSeries(x)==0){
@@ -67,8 +67,8 @@ plot.idframe <- function(x,col="steelblue",lwd=1){
}
ggplot(melt(data.frame(time=as.numeric(time(data)), data), id.vars="time"),
aes(time, value)) + geom_line(size=lwd,color=col) +
- facet_grid(variable ~ .,scale="free") + theme_bw(16,"sans") + ylab("") +
- theme(axis.title.x=element_text(size=11))
+ facet_grid(variable ~ .,scale="free") + theme_bw(14,"sans") + ylab("") +
+ theme(axis.title.x=element_text(size=11)) + ggtitle(main)
}
#' @export
diff --git a/man/plot.idframe.Rd b/man/plot.idframe.Rd
index cd92f37..a925b29 100644
--- a/man/plot.idframe.Rd
+++ b/man/plot.idframe.Rd
@@ -4,16 +4,16 @@
\alias{plot.idframe}
\title{Plotting idframe objects}
\usage{
-\method{plot}{idframe}(x, col = "steelblue", lwd = 0.5)
+\method{plot}{idframe}(x, col = "steelblue", lwd = 1, main = NULL)
}
\arguments{
\item{x}{an \code{idframe} object}
\item{col}{line color, to be passed to plot.(Default=\code{"steelblue"})}
-\item{lwd}{line width, in millimeters(Default=\code{0.5})}
+\item{lwd}{line width, in millimeters(Default=\code{1})}
-\item{par}{a list of arguments passed to par() before plotting.}
+\item{main}{the plot title. (Default = \code{NULL})}
}
\description{
Plotting method for objects inherting from class \code{idframe}