Nothing
## ----setup, include = FALSE---------------------------------------------------
knitr::opts_chunk$set(collapse = TRUE, comment = "#>")
library(surveyframe)
library(knitr)
## ----reliability, eval = requireNamespace("psych", quietly = TRUE)------------
demo <- sframe_demo_data()
instr <- demo$instrument
responses <- demo$responses
rr <- reliability_report(responses, instr, omega = TRUE)
rel_df <- do.call(rbind, lapply(rr, function(s) data.frame(
Scale = paste0(s$label, " (", s$scale_id, ")"),
Items = s$n_items,
N = s$n,
Alpha = if (!is.null(s$alpha)) sprintf("%.2f", s$alpha) else "n/a",
Omega_h = if (!is.null(s$omega_h)) sprintf("%.2f", s$omega_h) else "n/a",
Omega_t = if (!is.null(s$omega_t)) sprintf("%.2f", s$omega_t) else "n/a",
stringsAsFactors = FALSE)))
kable(rel_df, row.names = FALSE,
col.names = c("Scale", "Items", "N", "Alpha", "Omega h", "Omega total"),
align = c("l", "c", "c", "r", "r", "r"),
caption = "Scale reliability statistics")
## ----item-report--------------------------------------------------------------
demo <- sframe_demo_data()
instr <- demo$instrument
responses <- demo$responses
items <- item_report(responses, instr)
first <- items[[1]]
kable(first$diagnostics, digits = 2,
caption = paste0("Item diagnostics: ", first$label, " (", first$scale_id, ")"))
## ----efa, eval = requireNamespace("psych", quietly = TRUE)--------------------
efa_report(responses, instr)
## ----validity-----------------------------------------------------------------
published_loadings <- list(
DMRE = c(dmre_1 = .815, dmre_2 = .899, dmre_3 = .668, dmre_4 = .838),
DMAU = c(dmau_1 = .843, dmau_2 = .915, dmau_3 = .920),
DMEU = c(dmeu_1 = .897, dmeu_2 = .929, dmeu_3 = .932),
DMPV = c(dmpv_1 = .818, dmpv_2 = .916, dmpv_3 = .900, dmpv_4 = .863),
DSQA = c(dsqa_1 = .904, dsqa_2 = .920, dsqa_3 = .869),
DSQT = c(dsqt_1 = .778, dsqt_2 = .883, dsqt_3 = .879, dsqt_4 = .811, dsqt_5 = .713),
DSUQ = c(dsuq_1 = .780, dsuq_2 = .855, dsuq_3 = .845, dsuq_4 = .551, dsuq_5 = .529),
TS = c(ts_1 = .912, ts_2 = .950, ts_3 = .869),
BI = c(bi_1 = .937, bi_2 = .911, bi_3 = .940)
)
validity <- validity_report(published_loadings)
kable(validity$reliability, digits = 2,
caption = "Composite reliability and average variance extracted")
## ----validity-scores, eval = FALSE--------------------------------------------
# validity_report(published_loadings, construct_scores = scored_constructs)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.