Hi Dan,
I attached the two outputs for my dif analysis on race. The second output appears to not have converged well. Is it appropriate to subtract the item*race estimates from one another for each race and item and use the resulting number to determine the magnitude of dif? We have done something like this in Winsteps but I am not sure if the estimate values are equivalent.
Relatedly, it is possible that the data are three dimensional. How would I run a dif for three dimensional data? Would I run dif on each dimension separately?
Gena
title dif_race Partial credit model for DIF analysis for Race;
datafile pre_test_121917.dat;
format sex 12 race 13 responses 14-37;
labels <<labels_sex_and_race.lab;
model item+race+item*race+race*item*step;
estimate !fit=no,stderr=quick;
show !table=1:2 >> sample_race_dif_output.shw;
plot expected!gins=1:2, overlay=yes, legend=yes;
reset;
datafile pre_test_121917.dat;
format sex 12 race 13 responses 14-37;
labels << labels_sex_and_race.lab;
model item+race+item*race+item*step;
estimate !fit=no,stderr=empirical;
show !table=1:2 >> sample_race_dif_output.shw;
plot expected!gins=1:2, overlay=yes, legend=yes;