hgrm
fits a hierarchical graded response model in which both
the mean and the variance of the latent preference (ability parameter)
may depend on person-specific covariates (x
and z
).
Specifically, the mean is specified as a linear combination of x
and the log of the variance is specified as a linear combination of
z
. Nonresponses are treated as missing at random.
hgrm(
y,
x = NULL,
z = NULL,
constr = c("latent_scale", "items"),
beta_set = 1L,
sign_set = TRUE,
init = c("naive", "glm", "irt"),
control = list()
)
A data frame or matrix of item responses.
An optional model matrix, including the intercept term, that predicts the mean of the latent preference. If not supplied, only the intercept term is included.
An optional model matrix, including the intercept term, that predicts the variance of the latent preference. If not supplied, only the intercept term is included.
The type of constraints used to identify the model: "latent_scale", or "items". The default, "latent_scale" constrains the mean of latent preferences to zero and the geometric mean of prior variance to one; "items" places constraints on item parameters instead and sets the mean of item difficulty parameters to zero and the geometric mean of the discrimination parameters to one.
The index of the item for which the discrimination parameter is
restricted to be positive (or negative). It may take any integer value from
1 to ncol(y)
.
Logical. Should the discrimination parameter of
the corresponding item (indexed by beta_set
) be positive
(if TRUE
) or negative (if FALSE
)?
A character string indicating how item parameters are initialized. It can be "naive", "glm", or "irt".
A list of control values
The maximum number of iterations of the EM algorithm. The default is 150.
Tolerance parameter used to determine convergence of the
EM algorithm. Specifically, iterations continue until the Euclidean
distance between \(\beta_{n}\) and \(\beta_{n-1}\) falls under eps
,
where \(\beta\) is the vector of item discrimination parameters.
eps
=1e-4 by default.
The maximum number of iterations of the conditional maximization procedures for updating \(\gamma\) and \(\lambda\). The default is 15.
Tolerance parameter used to determine convergence of the
conditional maximization procedures for updating \(\gamma\) and
\(\lambda\). Specifically, iterations continue until the Euclidean
distance between two consecutive log likelihoods falls under eps2
.
eps2
=1e-3 by default.
Number of Gauss-Legendre quadrature points for the E-step. The default is 21.
[-C, C] sets the range of integral in the E-step. C
=3 by default.
An object of class hgrm
.
A data frame of parameter estimates, standard errors, z values and p values.
A data frame of EAP estimates of latent preferences and their approximate standard errors.
Variance-covariance matrix of parameter estimates.
The log-likelihood value at convergence.
Number of units.
Number of items.
A vector denoting the number of response categories for each item.
A list showing the levels of the factorized response categories.
The number of predictors for the mean equation.
The number of predictors for the variance equation.
List of control values.
The matched call.
Zhou, Xiang. 2019. "Hierarchical Item Response Models for Analyzing Public Opinion." Political Analysis.
# NOT RUN {
y <- nes_econ2008[, -(1:3)]
x <- model.matrix( ~ party * educ, nes_econ2008)
z <- model.matrix( ~ party, nes_econ2008)
nes_m1 <- hgrm(y, x, z)
nes_m1
# }
Run the code above in your browser using DataLab