The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
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.These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.