meow 1.0.0
CRAN release: 2026-07-06
First public release.
Features
-
meow()runs a full CAT administration simulation from three swappable modules: a data loader, an item selection function, and a parameter update function. - The simulation state is matrix-based for speed. Item selection and parameter update functions receive a respondent-by-item response matrix
Rand an integer administration matrixadmin; person and item parameters are kept as data frames so users can add arbitrary parameters.- Item selection functions take
(pers, item, R, admin, adj_mat, ...)and return an updatedadminmatrix with newly administered cells marked non-zero. - Parameter update functions take
(pers, item, R, admin, ...)and return a list with updatedpersanditemdata frames.
- Item selection functions take
- Bundled data loaders (
data_existing(),data_simple_1pl()), item selectors (select_sequential(),select_random(),select_max_info(),select_restrict_rate(),select_max_dist(),select_max_dist_enhanced()), and parameter updaters (update_theta_mle(),update_maths_garden(),update_prowise_learn()). - Helpers for module authors:
meow_long()converts the matrix state to a long(id, item, resp)data frame,meow_administered()returns a logical mask of administered items, andconstruct_adj_mat()builds the item co-exposure matrix. -
meow()accepts akeep_adj_matsargument; set it toFALSEto retain only the final adjacency matrix and save memory on large or long simulations. - Vignettes cover getting started, each module type, the bundled algorithms, and a dedicated “Extending meow” guide to writing your own modules.
