detrend_B {pdt}R Documentation

detrend_B

Description

Detrends the phase B part of time series y. detrend B is optional and not validated. The mean of the detrended signal will be set to the predicted value based on detrend_B_position: detrend_B_position = "first" : take predicted value for first valid observation detrend_B_position = "center" : take predicted value for center observation detrend_B_position = "last" : take predicted value for last valid observation.

Usage

detrend_B(x, x_values, y, detrend_B_position = "center")

Arguments

x

factor vector to indicate conditions or phases (e.g., "A" and "B")

x_values

numerical vector with distance (time markers) between observations

y

numeric vector with the observed y-values

detrend_B_position

character to indicate the mean

Value

List with the trend and the detrended y values: x_values_B_trend = vector with distance (time markers) between B-detrended signal, y_B_trend = vector with computed B-trend, y_detrended = vector with computed B-detrended y values.

Examples

pdt::detrend_B(as.factor(c(rep("A",20), rep("B",20))), 1:40,
  c(rnorm(20), rnorm(20)+2), detrend_B_position="center")


[Package pdt version 0.0.2 Index]