diff options
Diffstat (limited to 'man/detrend.Rd')
-rw-r--r-- | man/detrend.Rd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/man/detrend.Rd b/man/detrend.Rd index 2121ba1..f567247 100644 --- a/man/detrend.Rd +++ b/man/detrend.Rd @@ -2,7 +2,7 @@ % Please edit documentation in R/preprocess.R \name{detrend} \alias{detrend} -\title{Remove linear trends} +\title{Remove offsets and linear trends} \usage{ detrend(data, type = c("constant", "linear")[2]) } @@ -23,14 +23,14 @@ A list containing the following elements } } \description{ -Removes the mean value or linear trends in each of the input and output matrices. +Removes the offsets or linear trends in each of the input and output matrices. } \examples{ data(cstr) fit <- detrend(cstr) # remove linear trends Zdetrend <- predict(fit) # get the detrended data -demean <- detrend(cstr,type="constant") # remove mean values +demean <- detrend(cstr,type="constant") # remove offsets Zcent <- predict(demean) # get the centered data } \seealso{ |