trendSC: Trend analysis for single-cases data

Description Usage Arguments Value Author(s) See Also Examples

View source: R/trendSC.R

Description

The trendSC function provides an overview of linear trends in single-case data. By default, it gives you the intercept and slope of a linear and a squared regression of measurement-time on scores. Models are computed separately for each phase and across all phases. For a more advanced application, you can add regression models using the R specific formula class.

Usage

1
trendSC(data, dvar, pvar, mvar, offset = -1, model = NULL)

Arguments

data

A single-case data frame. See scdf to learn about this format.

dvar

Character string with the name of the independend variable.

pvar

Character string with the name of the phase variable.

mvar

Character string with the name of the measurement time variable.

offset

An offset for the first measurement-time of each phase (MT). If set offset = 0, the phase measurement is handled as MT 1. Default is offset = -1, setting the first value of MT to 0.

model

A string or a list of (named) strings each depicting one regression model. This is a formula expression of the standard R class. The parameters of the model are values, mt and phase.

Value

trend

A matrix containing the results (Intercept, B and beta) of separate regression models for phase A, phase B, and the whole data.

offset

Numeric argument from function call (see Arguments section).

Author(s)

Juergen Wilbert

See Also

describeSC, autocorrSC, plm

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Compute the linear and squared regression for a random single-case
design <- design_rSC(slope = 0.5)
matthea <- rSC(design)
trendSC(matthea)

## Besides the linear and squared regression models compute two custom models:
## a) a cubic model, and b) the values predicted by the natural logarithm of the
## measurement time.
design <- design_rSC(slope = 0.3)
ben <- rSC(design)
trendSC(ben, offset = 0, model = c("Cubic" = values ~ I(mt^3), "Log Time" = values ~ log(mt)))

scan documentation built on Feb. 12, 2021, 3:01 a.m.