Based on guidance provided below I have revised my question.
How would I calculate a 95% CI for the mean of a beta-binomial distribution that ranges between 0 and 5 and can only have values that are a multiple of 0.5? Any guidance would be much appreciated?
Is bootstrapping an appropriate method for determining a confidence interval for this data?
My data are body condition scores recorded by a veterinarian. I have two sets of data (set1 and set2).
set1 <- as.data.frame(c(3,3,2.5,2.5,4.5,3,2,4,3,3.5,3.5,2.5,3,3,3.5,3,,3,4,3.5,3.5,4,3.5,3.5,4,3.5)
colnames(set2) <- "numbers"
set2 <- as.data.frame(c(2.5,4,5,4,5,5,5,5,5)
colnames(set2) <- "numbers"
The most similar question I have found is here