I have paired data as follows. These are proportion correct scores (ranging from 0 to 1) from multiple experiments in which Treatment X and Treatment Y were administered.
Treatment X: 0.25, 0.35, 0.15, 0.15, etc. Treatment Y: 0.55, 0.56, 0.33, 0.08, etc.
Based on theoretical predictions, I should expect close to a 1:1 relationship between data from Treatment X and Treatment Y. So for instance, experiment 1, the scores should be the same (but they're not, 0.25 vs. 0.55).
Accordingly, if I create a scatterplot of X vs. Y scores, and the 1:1 relationship held, all points should be on a diagonal line with slope 1,1 and intercept at 0.
The key question is: how do I test for Treatment X being different from Treatment Y (or not)? (My data indicate that predictions in the literature are wrong, and there isn't a 1:1 relationship; I'd like to find a way of testing that). Two questions follow:
- My first thought is to do a sign test, 2-tailed. In R, however, binom.test requires positive integers. Is there a workaround for that?
- Alternatively, do any of you suggest a more sophisticated way to test the relationship between Treatment X and Treatment Y? For instance, a way to assess how many points fall above or below the predicted relationship (e.g., Y higher than X, or X higher than Y)?
Thanks for any suggestions!