We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Under edmcore, the following should be automatically performed under summary().
edmcore
summary()
## Summarize posterior samples for g and 1-s ---- chain_samples = burnin:chainLength mGs = apply(outchain$GamS[, chain_samples], 1, mean) sGs = apply(outchain$GamS[, chain_samples], 1, sd) m1mSS = 1 - apply(outchain$SigS[, chain_samples], 1, mean) s1mSS = apply(outchain$SigS[, chain_samples], 1, sd) output = cbind(mGs, sGs, m1mSS, s1mSS) colnames(output) = c('g Est', 'g SE', '1-s Est', '1-s SE') rownames(output) = paste('Item', 1:J) print(output, digits = 3) ## Summarize marginal skill distribution ---- # Via posterior samples for latent class proportions PIoutput = cbind(apply(outchain$PIs, 1, mean), apply(outchain$PIs, 1, sd)) colnames(PIoutput) = c('EST', 'SE') rownames(PIoutput) = apply(As, 1, paste0, collapse='') print(PIoutput, digits = 3)
Goal:
summary(outchain)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Under
edmcore
, the following should be automatically performed undersummary()
.Goal:
summary(outchain)
The text was updated successfully, but these errors were encountered: