Hello! I am a longtime Stata user, but new to IRT analysis. I have a question about the IRT graded response model (GRM). I have heard from colleagues that IRT can be used to test whether or not it would make sense statistically to reduce the number of response options in a questionnaire. (This could be useful to ease respondent burden.)
For example one might be interested in reducing a 5 category Likert scale to a 3 category Likert scale. However, in reading the Stata help, and in searching online, I have been unable to find any clear references that describe how to do this. Below please find a hypothetical setup:
Is there a way within IRT to test, for example, whether an item, like ta1, that has 4 response options, could have fewer response options, e.g. 3 or 2? I imagine this would involve testing whether there are statistically significant differences between different difficulty parameters in the GRM, but can't quite figure out if this is the right direction, and if so, how specifically to accomplish this.
Thank you for any thoughts or suggestions, or suggestions of references to look into.
Andy
For example one might be interested in reducing a 5 category Likert scale to a 3 category Likert scale. However, in reading the Stata help, and in searching online, I have been unable to find any clear references that describe how to do this. Below please find a hypothetical setup:
Code:
use https://www.stata-press.com/data/r18/charity // demonstration data from Stata documentation tabulate ta1 // tabulate first item irt grm ta1-ta5 // IRT graded response model irtgraph icc ta1 // category characteristic curve for first item
Thank you for any thoughts or suggestions, or suggestions of references to look into.
Andy
Comment