Item Text Descriptives

The IRW item text resource contains full item wording for 421 tables spanning 388 distinct instruments. Items have a median length of 9 words (51 characters) and a median Flesch-Kincaid grade level of 6.4. See the Item Text Standard for a full description of the data structure.

Tables with item text

Item complexity

The two scatterplots show item complexity across tables. Left: mean words vs. Flesch-Kincaid grade level. Right: mean stem characters vs. mean response-option characters (tables with no response options are omitted from the right panel). Hover for table and instrument details.

Accessing item text

Code
library(irw)

irw_list_itemtext_tables()                   # List tables that have item text
items <- irw_itemtext("gilbert_meta_49")     # Fetch item text for a specific table
Code
import irw

irw.list_tables_with_itemtext()              # List tables that have item text
items = irw.itemtext("gilbert_meta_49")      # Fetch item text for a specific table