"How can I get the logit measures corresponding to raw scores from
each of three forms using pre-calibrated items? Ideally I would
like to construct a table that associated every raw score on each
of the three forms to an interval-level measure, and I would like
all of these measures to be on a common metric."
Karon Cook
Here is an SPSS routine that automates the process. You provide an initial starting ability estimate that is at about the mean of your pre-calibrated item difficulties. The routine then computes the estimated raw score (sum of p) for the specified set of pre-calibrated items, as well as the sum of p(1-p). For the next iteration, it use the Newton-Raphson method to adjust the estimated ability by adding (target raw score - sum of p)/(sum of p(1-p)). Change 20 in the following to your test length, L:
TITLE
INPUT PROGRAM
+ LOOP RS = 1 TO 19 [insert the range of raw scores from 1 to L-1]
+ COMPUTE ABIL = 0 [Insert your starting ability value here]
+ COMPUTE DISC = 0
+ LOOP
+ COMPUTE ABIL = ABIL + DISC
+ DO REPEAT PROB = P1 TO P20/DIFF = [insert your string of L difficulties]
+ COMPUTE PROB = ((EXP(ABIL - DIFF)))/(1 + EXP(ABIL - DIFF))
+ END REPEAT
+ DO REPEAT PQ = PQ1 TO PQ20 / PROB = P1 TO P20 [change 20 to your L ]
+ COMPUTE PQ = (PROB) * (1 - PROB)
+ END REPEAT
+ COMPUTE DISC = (RS - SUM(P1 TO P20))/(SUM(PQ1 TO PQ20))
+ END LOOP IF (ABS(DISC) LT .01) [my criterion for convergence = .01]
+ END CASE
+ END FILE
END INPUT PROGRAM
LIST VAR = RS ABIL
Mark Daniel
American Guidance Service
Scores to Measures with SPSS.Daniel M. Rasch Measurement Transactions, 1998, 12:2 p. 637.
Forum | Rasch Measurement Forum to discuss any Rasch-related topic |
Go to Top of Page
Go to index of all Rasch Measurement Transactions
AERA members: Join the Rasch Measurement SIG and receive the printed version of RMT
Some back issues of RMT are available as bound volumes
Subscribe to Journal of Applied Measurement
Go to Institute for Objective Measurement Home Page. The Rasch Measurement SIG (AERA) thanks the Institute for Objective Measurement for inviting the publication of Rasch Measurement Transactions on the Institute's website, www.rasch.org.
Coming Rasch-related Events | |
---|---|
Apr. 21 - 22, 2025, Mon.-Tue. | International Objective Measurement Workshop (IOMW) - Boulder, CO, www.iomw.net |
Jan. 17 - Feb. 21, 2025, Fri.-Fri. | On-line workshop: Rasch Measurement - Core Topics (E. Smith, Winsteps), www.statistics.com |
Feb. - June, 2025 | On-line course: Introduction to Classical Test and Rasch Measurement Theories (D. Andrich, I. Marais, RUMM2030), University of Western Australia |
Feb. - June, 2025 | On-line course: Advanced Course in Rasch Measurement Theory (D. Andrich, I. Marais, RUMM2030), University of Western Australia |
May 16 - June 20, 2025, Fri.-Fri. | On-line workshop: Rasch Measurement - Core Topics (E. Smith, Winsteps), www.statistics.com |
June 20 - July 18, 2025, Fri.-Fri. | On-line workshop: Rasch Measurement - Further Topics (E. Smith, Facets), www.statistics.com |
Oct. 3 - Nov. 7, 2025, Fri.-Fri. | On-line workshop: Rasch Measurement - Core Topics (E. Smith, Winsteps), www.statistics.com |
The URL of this page is www.rasch.org/rmt/rmt122n.htm
Website: www.rasch.org/rmt/contents.htm