From 0c88dce73cf77d04949930b12915bde401f07a77 Mon Sep 17 00:00:00 2001 From: Suraj Yerramilli Date: Tue, 18 Aug 2015 18:52:35 +0530 Subject: Updating documentation and correcting a few errors --- man/idframe.Rd | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) (limited to 'man') diff --git a/man/idframe.Rd b/man/idframe.Rd index cdb0f37..9af8540 100644 --- a/man/idframe.Rd +++ b/man/idframe.Rd @@ -4,29 +4,21 @@ \alias{idframe} \title{S3 class for storing input-output data.} \usage{ -idframe(output = NULL, input = NULL, type = c("time", "freq")[1], - Ts = 1, t.start = 0, t.end = NULL, tUnit = "seconds", - frequencies = NULL, fUnit = "Hz") +idframe(output = NULL, input = NULL, Ts = 1, start = 0, end = NULL, + unit = c("seconds", "minutes", "hours", "days", "hours")[1]) } \arguments{ \item{output}{dataframe/matrix/vector containing the outputs} \item{input}{dataframe/matrix/vector containing the inputs} -\item{type}{indicates the domain of the data (Default:"time")} - \item{Ts}{sampling interval (Default: 1)} -\item{t.start}{Starting time (Valid only if type="time")} - -\item{t.end}{End time. Optional Argument (Valid only if type="time")} - -\item{tUnit}{Time Unit (Default: "seconds")} +\item{start}{Time of the first observation} -\item{frequencies}{Vector containing the list of frequencies at which the data was -recorded (Valid only if type="frequency")} +\item{unit}{Time Unit (Default: "seconds")} -\item{fUnit}{Frequency Unit (Valid only if type="frequency")} +\item{t.end}{Time of the last observation Optional Argument} } \value{ an idframe object -- cgit