diff options
author | Suraj Yerramilli | 2017-01-06 17:26:19 -0600 |
---|---|---|
committer | Suraj Yerramilli | 2017-01-06 17:26:19 -0600 |
commit | 2c3b5027987486d0040501a3c254e106172eb5dc (patch) | |
tree | e8ac970779bf7985feb1c8f09f3e31f7bdccd8fc /man | |
parent | a4cec768a4ed5fe4355a03340af544f2f8a6ba0c (diff) | |
download | SysID-R-code-2c3b5027987486d0040501a3c254e106172eb5dc.tar.gz SysID-R-code-2c3b5027987486d0040501a3c254e106172eb5dc.tar.bz2 SysID-R-code-2c3b5027987486d0040501a3c254e106172eb5dc.zip |
S3 method consistency part-2
Diffstat (limited to 'man')
-rw-r--r-- | man/impulseest.Rd | 2 | ||||
-rw-r--r-- | man/impulseplot.Rd (renamed from man/plot.impulseest.Rd) | 6 | ||||
-rw-r--r-- | man/plot.idframe.Rd | 4 | ||||
-rw-r--r-- | man/plot.idfrd.Rd | 4 |
4 files changed, 10 insertions, 6 deletions
diff --git a/man/impulseest.Rd b/man/impulseest.Rd index 4852d2c..4247a0f 100644 --- a/man/impulseest.Rd +++ b/man/impulseest.Rd @@ -33,7 +33,7 @@ uk <- rnorm(1000,1) yk <- filter (uk,c(0.9,-0.4),method="recursive") + rnorm(1000,1) data <- idframe(output=data.frame(yk),input=data.frame(uk)) fit <- impulseest(data) -plot(fit) +impulseplot(fit) } \references{ diff --git a/man/plot.impulseest.Rd b/man/impulseplot.Rd index ac32797..0e7ced3 100644 --- a/man/plot.impulseest.Rd +++ b/man/impulseplot.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/nonparam.R -\name{plot.impulseest} -\alias{plot.impulseest} +\name{impulseplot} +\alias{impulseplot} \title{Impulse Response Plots} \usage{ -\method{plot}{impulseest}(model, sd = 2) +impulseplot(model, sd = 2) } \arguments{ \item{model}{an object of class \code{impulseest}} diff --git a/man/plot.idframe.Rd b/man/plot.idframe.Rd index 2a34888..2e7948d 100644 --- a/man/plot.idframe.Rd +++ b/man/plot.idframe.Rd @@ -5,7 +5,7 @@ \title{Plotting idframe objects} \usage{ \method{plot}{idframe}(x, col = "steelblue", lwd = 1, main = NULL, - size = 12) + size = 12, ...) } \arguments{ \item{x}{an \code{idframe} object} @@ -17,6 +17,8 @@ \item{main}{the plot title. (Default = \code{NULL})} \item{size}{text size (Default = \code{12})} + +\item{\ldots}{additional arguments} } \description{ Plotting method for objects inherting from class \code{idframe} diff --git a/man/plot.idfrd.Rd b/man/plot.idfrd.Rd index d8f85af..435f6d7 100644 --- a/man/plot.idfrd.Rd +++ b/man/plot.idfrd.Rd @@ -4,7 +4,7 @@ \alias{plot.idfrd} \title{Plotting idfrd objects} \usage{ -\method{plot}{idfrd}(x, col = "steelblue", lwd = 1) +\method{plot}{idfrd}(x, col = "steelblue", lwd = 1, ...) } \arguments{ \item{x}{An object of class \code{idframe}} @@ -13,6 +13,8 @@ steelblue"})} \item{lwd}{the line width, a positive number, defaulting to 1} + +\item{\ldots}{additional arguments} } \description{ Generates the bode plot of the given frequency response data. It uses the |