Skip to content
Prev 110186 / 398500 Next

Chi Square with two tab-delimited text files

It's a bit difficult to advise without knowing what the rows and
columns represent, but why not just calculate the statistic yourself,
given that you already have observed and expected values?  For
example:

chi2 <- sum((y-x)^2/x)
On 26/02/07, Carina Brehony <carina.brehony at zoology.oxford.ac.uk> wrote: