Hi,
I am using the following data to create disability score by the method highlighted on the picture. The authors used Stata 13 but didn't give any details of the procedure. And I couldn't find the option for creating scores from the IRT diaglog box. So I would like to know the commands for the two steps: generating the IRT scores and then transforing the scores to a scale of 0-100.

I've recoded the disability measures (seeing hearing communicating remembering walking dressing other) to 0 and 1 for ease of calculation.
Thanks in advance for your help!
I am using the following data to create disability score by the method highlighted on the picture. The authors used Stata 13 but didn't give any details of the procedure. And I couldn't find the option for creating scores from the IRT diaglog box. So I would like to know the commands for the two steps: generating the IRT scores and then transforing the scores to a scale of 0-100.
I've recoded the disability measures (seeing hearing communicating remembering walking dressing other) to 0 and 1 for ease of calculation.
Thanks in advance for your help!
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input byte(seeing hearing communicating remembering walking dressing other) 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 0 0 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 0 0 0 0 0 0 1 1 1 1 1 1 1 0 1 1 1 0 1 0 1 1 1 1 1 1 1 0 0 1 1 0 1 0 0 1 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 1 1 1 0 1 0 1 1 0 1 0 1 1 1 1 0 1 0 1 1 1 1 1 1 1 0 0 0 0 0 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 1 0 0 0 1 1 0 1 0 0 1 1 1 0 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 0 1 1 0 0 1 0 0 1 0 1 1 1 0 1 1 1 1 1 1 1 0 0 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 0 1 0 0 0 0 1 1 1 0 0 1 1 1 1 1 0 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 end label values seeing HDIS2_01 label def HDIS2_01 1 "no difficulty seeing", modify label values hearing HDIS4_01 label def HDIS4_01 1 "no difficulty hearing", modify label values communicating HDIS5_01 label def HDIS5_01 1 "no difficulty communicating", modify label values remembering HDIS6_01 label def HDIS6_01 1 "no difficulty remembering/concentrating", modify label values walking HDIS7_01 label def HDIS7_01 1 "no difficulty walking or climbing", modify label values dressing HDIS8_01 label def HDIS8_01 1 "no difficulty washing or dressing", modify label values other HDIS9_01 label def HDIS9_01 1 "no difficulty", modify
Comment