slcestimates {SLC} | R Documentation |
Computes slope and level change estimates after removing linear phase A trend.
slcestimates(info, n_a)
info |
one-dimensional data array: measurements separated by spaces; can be evoked as info <- array(scan("info.dat")) or inputting the data directly |
n_a |
minimum and maximums per scale matrix |
trendB |
slope change |
level |
level change |
Solanas, A. Manolov, R., & Onghena, P. (2009). Estimating slope and level change in single-case designs. Unpublished Manuscript.
info <- array(c(3,4,2,5,6,7)) n_a <- 3 results <- slcestimates(info,n_a)