powered by
Given a modeling object, extract the Q Matrix
extract_q_matrix(x, ...)# S3 method for q_matrix extract_q_matrix(x, ...)# S3 method for edina extract_q_matrix(x, binary = TRUE, ...)# S3 method for default extract_q_matrix(x, ...)
# S3 method for q_matrix extract_q_matrix(x, ...)
# S3 method for edina extract_q_matrix(x, binary = TRUE, ...)
# S3 method for default extract_q_matrix(x, ...)
An edina or q_matrix object
edina
q_matrix
Additional parameters
Boolean to indicate whether the Q matrix is shown in dichotomous form or in an estimated form.
A matrix that is either dichotomous or estimated depending on the value of the binary parameter.
matrix
binary
q_matrix(), as_q_matrix(), edina(), auto_edina()
q_matrix()
as_q_matrix()
edina()
auto_edina()
# NOT RUN { # Q matrix values x = matrix(c(1, 0, 0, 1), nrow = 2) # Show Q matrix structure Q = q_matrix(x) # Retrieve Q matrix extract_q_matrix(Q) # }
Run the code above in your browser using DataLab