I want to compare the following percentages:
a<-c(0.59,0.60,0.55,0.55,0.60,0.58,0.67,0.68)
b<-c(0.16,0.21,0.26,0.53,0.84,0.89,0.84,0.94)
- the values for
a
are probabilities calculated with bayes rule - the values for
b
are number of instances out of the total
I did t.test(a,b)
Is this appropriate? if not how can I compare these two?
UPDATE: instead of looking at differences in means is it possible to look at correspondence valu by value? for example compare .59 to .16, then .6 to .21 etc