summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--R/idframe.R2
-rw-r--r--man/idframe.Rd6
-rw-r--r--man/read.idframe.Rd2
-rw-r--r--man/read.table.idframe.Rd2
-rw-r--r--man/read.xls.idframe.Rd2
5 files changed, 7 insertions, 7 deletions
diff --git a/R/idframe.R b/R/idframe.R
index e6ad6d3..9976454 100644
--- a/R/idframe.R
+++ b/R/idframe.R
@@ -6,7 +6,7 @@
#' @param input dataframe/matrix/vector containing the inputs
#' @param Ts sampling interval (Default: 1)
#' @param start Time of the first observation
-#' @param t.end Time of the last observation Optional Argument
+#' @param end Time of the last observation Optional Argument
#' @param unit Time Unit (Default: "seconds")
#'
#' @return an idframe object
diff --git a/man/idframe.Rd b/man/idframe.Rd
index 9af8540..b44694a 100644
--- a/man/idframe.Rd
+++ b/man/idframe.Rd
@@ -5,7 +5,7 @@
\title{S3 class for storing input-output data.}
\usage{
idframe(output = NULL, input = NULL, Ts = 1, start = 0, end = NULL,
- unit = c("seconds", "minutes", "hours", "days", "hours")[1])
+ unit = c("seconds", "minutes", "hours", "days")[1])
}
\arguments{
\item{output}{dataframe/matrix/vector containing the outputs}
@@ -16,9 +16,9 @@ idframe(output = NULL, input = NULL, Ts = 1, start = 0, end = NULL,
\item{start}{Time of the first observation}
-\item{unit}{Time Unit (Default: "seconds")}
+\item{end}{Time of the last observation Optional Argument}
-\item{t.end}{Time of the last observation Optional Argument}
+\item{unit}{Time Unit (Default: "seconds")}
}
\value{
an idframe object
diff --git a/man/read.idframe.Rd b/man/read.idframe.Rd
index adcc72c..dd60160 100644
--- a/man/read.idframe.Rd
+++ b/man/read.idframe.Rd
@@ -5,7 +5,7 @@
\title{Data input into a idframe object}
\usage{
read.idframe(data, ninputs = NULL, Ts = 1, unit = c("seconds", "minutes",
- "hours", "days", "hours")[1])
+ "hours", "days")[1])
}
\arguments{
\item{data}{a \code{data.frame} object}
diff --git a/man/read.table.idframe.Rd b/man/read.table.idframe.Rd
index 5785201..5065317 100644
--- a/man/read.table.idframe.Rd
+++ b/man/read.table.idframe.Rd
@@ -5,7 +5,7 @@
\title{Read the contents of a table-formatted file}
\usage{
read.table.idframe(file, header = TRUE, sep = ",", ninputs = 0, Ts = 1,
- unit = c("seconds", "minutes", "hours", "days", "hours")[1], ...)
+ unit = c("seconds", "minutes", "hours", "days")[1], ...)
}
\arguments{
\item{file}{the path to the file to read}
diff --git a/man/read.xls.idframe.Rd b/man/read.xls.idframe.Rd
index 99ebbe8..205d52c 100644
--- a/man/read.xls.idframe.Rd
+++ b/man/read.xls.idframe.Rd
@@ -5,7 +5,7 @@
\title{Read the contents of a worksheet into a idframe object}
\usage{
read.xls.idframe(file, sheetName, header = TRUE, ninputs = 0, Ts = 1,
- unit = c("seconds", "minutes", "hours", "days", "hours")[1], ...)
+ unit = c("seconds", "minutes", "hours", "days")[1], ...)
}
\arguments{
\item{file}{the path to the file to read}