default_times.Rd
Calculate the default initial treatment time and follow-up time that are used to define and estimate the between-case standardized mean differences for multiple baseline designs and variations.
default_times(
design,
case,
phase,
session,
cluster = NULL,
series = NULL,
treatment_name = NULL,
data = NULL
)
Character string to specify whether data comes from a treatment
reversal ("TR"
), multiple baseline across participants
("MBP"
), replicated multiple baseline across behaviors
("RMBB"
), or clustered multiple baseline across participants
("CMB"
).
vector of case indicators or name of a character or factor vector
within data
indicating unique cases.
vector of treatment indicators or name of a character or factor
vector within data
indicating unique treatment phases.
vector of measurement occasions or name of numeric vector
within data
of measurement times.
(Optional) vector of cluster indicators or name of a character
or factor vector within data
indicating clusters.
(Optional) vector of series indicators or name of a character
or factor vector within data
indicating series.
(Optional) character string corresponding to the name of the treatment phase.
(Optional) dataset to use for analysis. Must be a
data.frame
.
A list of time range, default initial treatment time, and default follow-up time.
If treatment_name is left null, it will choose the second level of the phase variable to be the treatment phase.
data(Laski)
default_times(design = "MBP",
case = case, phase = treatment, session = time,
data = Laski)
#> $range
#> [1] 1 20
#>
#> $A
#> [1] 4
#>
#> $B
#> [1] 13
#>
data(Thiemann2001)
default_times(design = "RMBB",
case = case, series = series,
phase = treatment, session = time,
data = Thiemann2001)
#> $range
#> [1] 1 36
#>
#> $A
#> [1] 9
#>
#> $B
#> [1] 15
#>
data(Bryant2018)
default_times(design = "CMB",
cluster = group, case = case,
phase = treatment, session = session,
data = Bryant2018)
#> $range
#> [1] 1 59
#>
#> $A
#> [1] 5
#>
#> $B
#> [1] 54
#>