gtheoryr is a small R package for simple
generalizability theory workflows. It is intentionally modest in scope
so it is easy to understand, extend, and prepare for a first CRAN
submission.
The package currently includes:
gstudy_pxi() for a fully crossed persons-by-items
designgstudy_nested_ip() for a simple balanced nested
items-within-person designdstudy_pxi() for relative and absolute decision
summariesdstudy_nested_ip() for a simple nested-design
D-studyinstall.packages("gtheoryr", repos = NULL, type = "source")library(gtheoryr)
scores <- data.frame(
person = rep(c("P1", "P2", "P3"), each = 3),
item = rep(c("I1", "I2", "I3"), times = 3),
score = c(8, 7, 9, 5, 4, 6, 7, 6, 8)
)
gs <- gstudy_pxi(scores, person = "person", item = "item", score = "score")
gs
dstudy_pxi(gs, n_items = 6)Before submitting to CRAN, you should:
DESCRIPTION are
correct.R CMD check --as-cran gtheoryr.cran-comments.md file summarizing check
results.