diff options
-rw-r--r-- | R/readData.R | 60 | ||||
-rw-r--r-- | man/read.idframe.Rd | 33 | ||||
-rw-r--r-- | man/read.table.idframe.Rd | 50 | ||||
-rw-r--r-- | man/read.xls.idframe.Rd (renamed from man/readxls.idframe.Rd) | 10 |
4 files changed, 142 insertions, 11 deletions
diff --git a/R/readData.R b/R/readData.R index 910bc94..24bb25d 100644 --- a/R/readData.R +++ b/R/readData.R @@ -1,4 +1,22 @@ -# Reading data from dataframes +#' Data input into a idframe object +#' +#' Read the contents of an file in table format into a \code{idframe} object. +#' +#' @param data a \code{data.frame} object +#' @param ninputs the number of input columns. (Default: 1) +#' @param type indicates the domain of the data (Default:\code{"time"}) +#' @param Ts sampling interval (Default: 1) +#' @param freqData a logical value indicating whether the file contains the list of +#' frequencies. If \code{TRUE}, they need to be present in the first column. +#' (Default: \code{idframe}) +#' +#' @details +#' +#' If \code{type="freq"} and \code{freqData = TRUE}, then the first column in the file +#' should contain the frequencies. +#' +#' @return an idframe object +#' @export read.idframe <- function(data,ninputs=1,type=c("time","freq")[1], Ts = 1,freqData=FALSE){ @@ -22,8 +40,38 @@ read.idframe <- function(data,ninputs=1,type=c("time","freq")[1], return(out) } -# Reading from table-formatted files -readtab.idframe <- function(file,header=TRUE,sep=",",ninputs=1, +#' Data input into a idframe object +#' +#' Read the contents of an file in table format into a \code{idframe} object. +#' +#' @param file the path to the file to read +#' @param sep the field separator character. Values on each line of the file are +#' separated by this character. (Default: \code{","}) +#' @param header a logical value indicating whether the first row corresponding to +#' the first element of the rowIndex vector contains the names of the variables. +#' (Default: \code{TRUE}) +#' @param ninputs the number of input columns. (Default: 1) +#' @param type indicates the domain of the data (Default:\code{"time"}) +#' @param Ts sampling interval (Default: 1) +#' @param freqData a logical value indicating whether the file contains the list of +#' frequencies. If \code{TRUE}, they need to be present in the first column. +#' (Default: \code{idframe}) +#' @param ... additional arguments to be passed to the \code{\link[utils]{read.table}} function +#' +#' @details +#' +#' The \code{readxlsx.idframe} function uses the \code{\link[utils]{read.table}} function, +#' provided by the \pkg{xlsx} package, to read data from an excel file and then calls the +#' \code{\link{read.idframe}} function to read the data into a idframe object +#' +#' +#' If \code{type="freq"} and \code{freqData = TRUE}, then the first column in the file +#' should contain the frequencies. +#' +#' @return an idframe object +#' @export +#' @seealso \code{\link[utils]{read.table}} +read.table.idframe <- function(file,header=TRUE,sep=",",ninputs=1, type=c("time","freq")[1],Ts = 1,freqData=FALSE,...){ # Read from file (default: csv file) @@ -44,7 +92,7 @@ readtab.idframe <- function(file,header=TRUE,sep=",",ninputs=1, #' the first element of the rowIndex vector contains the names of the variables. #' (Default: \code{TRUE}) #' @param ninputs the number of input columns. (Default: 1) -#' @param type ndicates the domain of the data (Default:\code{"time"}) +#' @param type indicates the domain of the data (Default:\code{"time"}) #' @param Ts sampling interval (Default: 1) #' @param freqData a logical value indicating whether the file contains the list of #' frequencies. If \code{TRUE}, they need to be present in the first column. @@ -53,7 +101,7 @@ readtab.idframe <- function(file,header=TRUE,sep=",",ninputs=1, #' #' @details #' -#' The \code{readxlsx.idframe} function uses the \code{\link[xlsx]{read.xlsx2}} function, +#' The \code{read.xlsx.idframe} function uses the \code{\link[xlsx]{read.xlsx2}} function, #' provided by the \pkg{xlsx} package, to read data from an excel file and then calls the #' \code{\link{read.idframe}} function to read the data into a idframe object #' @@ -68,7 +116,7 @@ readtab.idframe <- function(file,header=TRUE,sep=",",ninputs=1, #' @return an idframe object #' @export #' @seealso \code{\link[xlsx]{read.xlsx2}} -readxls.idframe <- function(file,sheetName,header=TRUE,ninputs=1, +read.xls.idframe <- function(file,sheetName,header=TRUE,ninputs=1, type=c("time","freq")[1],Ts = 1,freqData=FALSE,...){ require(xlsx) diff --git a/man/read.idframe.Rd b/man/read.idframe.Rd new file mode 100644 index 0000000..5a54d2d --- /dev/null +++ b/man/read.idframe.Rd @@ -0,0 +1,33 @@ +% Generated by roxygen2 (4.1.0): do not edit by hand +% Please edit documentation in R/readData.R +\name{read.idframe} +\alias{read.idframe} +\title{Data input into a idframe object} +\usage{ +read.idframe(data, ninputs = 1, type = c("time", "freq")[1], Ts = 1, + freqData = FALSE) +} +\arguments{ +\item{data}{a \code{data.frame} object} + +\item{ninputs}{the number of input columns. (Default: 1)} + +\item{type}{indicates the domain of the data (Default:\code{"time"})} + +\item{Ts}{sampling interval (Default: 1)} + +\item{freqData}{a logical value indicating whether the file contains the list of +frequencies. If \code{TRUE}, they need to be present in the first column. +(Default: \code{idframe})} +} +\value{ +an idframe object +} +\description{ +Read the contents of an file in table format into a \code{idframe} object. +} +\details{ +If \code{type="freq"} and \code{freqData = TRUE}, then the first column in the file +should contain the frequencies. +} + diff --git a/man/read.table.idframe.Rd b/man/read.table.idframe.Rd new file mode 100644 index 0000000..abd290e --- /dev/null +++ b/man/read.table.idframe.Rd @@ -0,0 +1,50 @@ +% Generated by roxygen2 (4.1.0): do not edit by hand +% Please edit documentation in R/readData.R +\name{read.table.idframe} +\alias{read.table.idframe} +\title{Data input into a idframe object} +\usage{ +read.table.idframe(file, header = TRUE, sep = ",", ninputs = 1, + type = c("time", "freq")[1], Ts = 1, freqData = FALSE, ...) +} +\arguments{ +\item{file}{the path to the file to read} + +\item{header}{a logical value indicating whether the first row corresponding to +the first element of the rowIndex vector contains the names of the variables. +(Default: \code{TRUE})} + +\item{sep}{the field separator character. Values on each line of the file are +separated by this character. (Default: \code{","})} + +\item{ninputs}{the number of input columns. (Default: 1)} + +\item{type}{indicates the domain of the data (Default:\code{"time"})} + +\item{Ts}{sampling interval (Default: 1)} + +\item{freqData}{a logical value indicating whether the file contains the list of +frequencies. If \code{TRUE}, they need to be present in the first column. +(Default: \code{idframe})} + +\item{...}{additional arguments to be passed to the \code{\link[utils]{read.table}} function} +} +\value{ +an idframe object +} +\description{ +Read the contents of an file in table format into a \code{idframe} object. +} +\details{ +The \code{readxlsx.idframe} function uses the \code{\link[utils]{read.table}} function, +provided by the \pkg{xlsx} package, to read data from an excel file and then calls the +\code{\link{read.idframe}} function to read the data into a idframe object + + +If \code{type="freq"} and \code{freqData = TRUE}, then the first column in the file +should contain the frequencies. +} +\seealso{ +\code{\link[utils]{read.table}} +} + diff --git a/man/readxls.idframe.Rd b/man/read.xls.idframe.Rd index 38617b5..e6d917c 100644 --- a/man/readxls.idframe.Rd +++ b/man/read.xls.idframe.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2 (4.1.0): do not edit by hand % Please edit documentation in R/readData.R -\name{readxls.idframe} -\alias{readxls.idframe} +\name{read.xls.idframe} +\alias{read.xls.idframe} \title{Read the contents of a worksheet into a idframe object} \usage{ -readxls.idframe(file, sheetName, header = TRUE, ninputs = 1, +read.xls.idframe(file, sheetName, header = TRUE, ninputs = 1, type = c("time", "freq")[1], Ts = 1, freqData = FALSE, ...) } \arguments{ @@ -18,7 +18,7 @@ the first element of the rowIndex vector contains the names of the variables. \item{ninputs}{the number of input columns. (Default: 1)} -\item{type}{ndicates the domain of the data (Default:\code{"time"})} +\item{type}{indicates the domain of the data (Default:\code{"time"})} \item{Ts}{sampling interval (Default: 1)} @@ -35,7 +35,7 @@ an idframe object Read the contents of an excel worksheet into a \code{idframe} object. } \details{ -The \code{readxlsx.idframe} function uses the \code{\link[xlsx]{read.xlsx2}} function, +The \code{read.xlsx.idframe} function uses the \code{\link[xlsx]{read.xlsx2}} function, provided by the \pkg{xlsx} package, to read data from an excel file and then calls the \code{\link{read.idframe}} function to read the data into a idframe object |