attribute profile matrix for members of class c such that αck ' is 1 if members of class c possess skill k
and zero otherwise.
sim_subject_attributes(N, K, probs =NULL)
Arguments
N: Number of Observations
K: Number of Skills
probs: A vector of probabilities that sum to 1.
Returns
A N by Kmatrix of latent classes corresponding to entry c of pi based upon mastery and nonmastery of the K skills.
Examples
# Define number of subjects and attributesN =100K =3# Generate a sample from the Latent Attribute Profile (Alpha) Matrix# By default, we sample from a uniform distribution weighting of classes.alphas_builtin = sim_subject_attributes(N, K)# Generate a sample using custom probabilities from the# Latent Attribute Profile (Alpha) Matrixprobs = rep(1/(2^ K),2^ K)alphas_custom = sim_subject_attributes(N, K, probs)