Description Usage Arguments References Examples
View source: R/screeplot_svd.R
Scree plot for singular values.
1 | screeplot_svd(data, link = "logit", epsilon = 1e-04, K_max = 10)
|
data |
the data matrix. Entries are either binary or categorical.
Missing entries should be |
link |
the link fucntion. Possible choices are "logit" and "probit". |
epsilon |
the truncation parameter. Default value is 1e-4. |
K_max |
The maximum number of factors contained in data. Default value is 10. |
Zhang, H., Chen, Y., & Li, X. (2020). A note on exploratory item factor analysis by singular value decomposition. Psychometrika, 1-15, doi: 10.1007/s11336-020-09704-7.
1 2 3 4 5 6 7 | require(mirtjml)
# load a simulated dataset
attach(data_sim)
data <- data_sim$response
screeplot_svd(data, K_max = 10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.