Default population parameters for the Bakk & Kuha (2018) simulation
Source:R/dgp.R
bk2018_params.RdA list of pre-specified parameters used by generate_data() and related
functions. All elements correspond to the values stated in the paper
(Section 3, p. 879).
Details
class_propsLength-3 vector of equal class proportions (1/3 each).
separation_levelsNamed vector mapping
"low","mid","high"to the probability of a "likely" response (0.70, 0.80, 0.90).covariate_paramsList with
$b0(intercepts) and$b(slopes) for the multinomial logit P(X=t | Zp). Interceptsb02andb03are set so that marginal class sizes average to 1/3 when Zp ~ Uniform{1..5}.distal_paramsList with
$mu(class means, c(-1, 1, 0)) and$sigma(residual SD = 1) for the distal outcome model.
Examples
# True item-response probabilities for high separation
bk2018_params$rho_high
#> NULL
# Covariate model parameters (intercepts and slopes)
bk2018_params$covariate_params
#> $b0
#> [1] 0.000000 2.344591 -3.655370
#>
#> $b
#> [1] 0 -1 1
#>
# Distal outcome parameters
bk2018_params$distal_params
#> $mu
#> [1] -1 1 0
#>
#> $sigma
#> [1] 1
#>