Thank you for your reply. No, I don't have statistical evidence as to whether the 2 groups should have similar scores. However, the groups have similar demographic and clinical characteristics and the researchers seem to think the scores should be similar. I haven't done any statistical test to determine if this is the case (so far, I've only run the usual proc freq/univariate procedures). Here comes a basic question regarding the chi-square test.....Would I use the code below to determine if there's an association between the completeness variable and site (researchers), and if so, then what would I need to do? proc freq data=check;
tables complete_rate*site/chisq; /*the 2 researchers are at different sites/medical facilities*/
run;
... View more