blob: 5a54d2d4266aa64830150e0b519b299afc3639de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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.
}
|