Data

Below we show metadata for the entire IRW, an example dataset, and illustrations of how to access the data programmatically. You can also explore the data here.

Metadata

Individual dataset (example)

Programmatic access

You can also access IRW data programmatically using the Redivis API for R or Python (note that you will first need to generate and set an API token). For example:

Code
# first install redivis package: devtools::install_github("redivis/redivis-r", ref="main")

# individual dataset
dataset <- redivis::user("datapages")$dataset("item_response_warehouse")
df <- dataset$table("4thgrade_math_sirt")$to_tibble()

# metadata
project <- redivis::user("mikabr")$project("irw")
metadata <- project$table("metadata_output")$to_tibble()
Code
import redivis

# individual dataset
dataset = redivis.user('datapages').dataset('item_response_warehouse')
df = dataset.table('4thgrade_math_sirt').to_pandas_dataframe()

# metadata
project = redivis.user('mikabr').project('irw')
metadata = project.table('metadata_output').to_pandas_dataframe()