Code
library(irw)
tables <- irw_list_tables(source = "sim") # List available simsyn tables
df <- irw_fetch(tables$name[1], source = "sim") # Fetch a simsyn tableThe IRW includes a branch of simulated and synthetic item response datasets, collectively referred to as simsyn. These data follow the same IRW data standard as the core repository and can be accessed using the same irw package functions, with source = "sim".
Simulated data are generated from a statistical model (e.g., a Rasch or 2PL model) with known parameter values. They are useful for methods development, power analysis, and verifying that estimation procedures recover the true parameters.
Synthetic data are constructed to approximate the properties of a specific real dataset — preserving features like the number of respondents, items, and response distributions — while protecting privacy or enabling open sharing where the original cannot be released.
Documentation for the available tables can be found here.
Simsyn data are particularly useful when you want to:
For realistic simulation of item difficulty parameters informed by the empirical IRW distribution, see the Simulating Item Difficulties vignette.