diff --git a/R/ReadIgorBinary.R b/R/ReadIgorBinary.R index 4ee1dd3..6c64a31 100644 --- a/R/ReadIgorBinary.R +++ b/R/ReadIgorBinary.R @@ -78,6 +78,7 @@ #' # make a list containing the wave's data in the users's environment #' wavename=read.ibw(system.file("igor","version5.ibw",package="IgorR"),MakeWave=TRUE) #' sum(get(wavename)) +#' @family igor-io read.ibw<-function(wavefile,Verbose=FALSE,ReturnTimeSeries=FALSE, MakeWave=FALSE,HeaderOnly=FALSE){ if (is.character(wavefile)) { @@ -152,6 +153,7 @@ read.ibw<-function(wavefile,Verbose=FALSE,ReturnTimeSeries=FALSE, #' @author jefferis #' @export #' @import bitops +#' @family igor-io #' @examples #' r=read.pxp(system.file("igor","testexpt.pxp",package="IgorR")) read.pxp<-function(pxpfile,regex,ReturnTimeSeries=FALSE,Verbose=FALSE, @@ -786,17 +788,19 @@ if(R.version$major>2) { } #' Convert an Igor wave (wave list) loaded by read.ibw into an R time series -#' -#' Where there are multiple waves, they are assumed to be of compatible lengths +#' +#' Where there are multiple waves, they are assumed to be of compatible lengths #' so that they can be joined together by \code{cbind}. -#' +#' #' @param WaveData, a wave or list of waves #' @param ReturnOriginalDataOnError If we can't make a time series, return -#' return original data (default TRUE) -#' @return a time series or multi time series (\code{ts}, \code{mts}) +#' return original data (default TRUE) +#' @return a time series or multi time series (\code{\link[stats]{ts}}, +#' \code{mts}) #' @author jefferis #' @export #' @importFrom stats ts +#' @family igor-io WaveToTimeSeries<-function(WaveData,ReturnOriginalDataOnError=TRUE){ if(is.list(WaveData)) { # process separate waves into multi wave time series @@ -817,7 +821,7 @@ WaveToTimeSeries<-function(WaveData,ReturnOriginalDataOnError=TRUE){ #' @param wave Igor wave loaded by \code{read.ibw} or\code{read.pxp} #' @return numeric vector with elements start, end, frequency #' @author jefferis -#' @seealso \code{\link{tsp}} +#' @seealso \code{\link[stats]{tsp}} #' @export tsp.igorwave<-function(wave){ bh=attr(wave,"BinHeader") diff --git a/docs/authors.html b/docs/authors.html index 1925dd1..6037879 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -52,7 +52,7 @@
diff --git a/docs/index.html b/docs/index.html index 9a2ca5f..415cb2b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -35,7 +35,7 @@ diff --git a/docs/reference/IgorR-package.html b/docs/reference/IgorR-package.html index 663ab2e..a2b480e 100644 --- a/docs/reference/IgorR-package.html +++ b/docs/reference/IgorR-package.html @@ -58,7 +58,7 @@ diff --git a/docs/reference/IgorR-private.html b/docs/reference/IgorR-private.html index ab70dab..1c470b4 100644 --- a/docs/reference/IgorR-private.html +++ b/docs/reference/IgorR-private.html @@ -55,7 +55,7 @@ diff --git a/docs/reference/ReadAllNclampLogTables.html b/docs/reference/ReadAllNclampLogTables.html index 9ff5918..072eb37 100644 --- a/docs/reference/ReadAllNclampLogTables.html +++ b/docs/reference/ReadAllNclampLogTables.html @@ -55,7 +55,7 @@ diff --git a/docs/reference/ReadNclampLogTable.html b/docs/reference/ReadNclampLogTable.html index f0bb64b..d99ba95 100644 --- a/docs/reference/ReadNclampLogTable.html +++ b/docs/reference/ReadNclampLogTable.html @@ -57,7 +57,7 @@ diff --git a/docs/reference/SummariseSweepFile.html b/docs/reference/SummariseSweepFile.html index 9f9d590..6e6bc80 100644 --- a/docs/reference/SummariseSweepFile.html +++ b/docs/reference/SummariseSweepFile.html @@ -55,7 +55,7 @@ diff --git a/docs/reference/SweepFilesToDataFrame.html b/docs/reference/SweepFilesToDataFrame.html index 71b9596..9e6cf10 100644 --- a/docs/reference/SweepFilesToDataFrame.html +++ b/docs/reference/SweepFilesToDataFrame.html @@ -56,7 +56,7 @@ diff --git a/docs/reference/UpdateSweepDataFrame.html b/docs/reference/UpdateSweepDataFrame.html index 7678664..e900214 100644 --- a/docs/reference/UpdateSweepDataFrame.html +++ b/docs/reference/UpdateSweepDataFrame.html @@ -55,7 +55,7 @@ diff --git a/docs/reference/WaveToTimeSeries.html b/docs/reference/WaveToTimeSeries.html index e64a08b..1871e83 100644 --- a/docs/reference/WaveToTimeSeries.html +++ b/docs/reference/WaveToTimeSeries.html @@ -27,7 +27,7 @@ - @@ -56,7 +56,7 @@ @@ -91,7 +91,7 @@Where there are multiple waves, they are assumed to be of compatible lengths +
Where there are multiple waves, they are assumed to be of compatible lengths
so that they can be joined together by cbind
.
a time series or multi time series (ts
, mts
)
a time series or multi time series (ts
,
+ mts
)
Other igor-io: read.ibw
,
+ read.pxp
Other igor-io: WaveToTimeSeries
,
+ read.pxp
# return a list containing the wave @@ -146,6 +151,8 @@@@ -159,6 +159,11 @@Contents
Arguments Value + +See also Examples diff --git a/docs/reference/read.pxp.html b/docs/reference/read.pxp.html index 70179eb..cc0f57b 100644 --- a/docs/reference/read.pxp.html +++ b/docs/reference/read.pxp.html @@ -58,7 +58,7 @@Details available. Since this is information straight from the horse's mouth it will override the
IgorPlatform
argument. +See also
+ +Other igor-io:
+WaveToTimeSeries
, +read.ibw
Examples
@@ -171,6 +176,8 @@r=read.pxp(system.file("igor","testexpt.pxp",package="IgorR"))Contents
tsp