Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

As a follow up to my previous question, I learned that the chi square test can be used to compare expected and observed frequency distributions. But...

Suppose I have the following data table in CSV, which surveys people on their fruit preferences in three cities (total people surveyed is different in each city):

apples,oranges,grapes,bananas

Acme Acres,5,15,5,15

Redmond,2,3,16,0

Cupertino,9,13,8,4

(1) I can run a chi-square test on each city, to see if my observed frequencies are significantly different from expected (in this case, equally distributed). But is there a test that I can run on ALL THREE cities at once to see if they are different from each other, AND also if they are individually different from the expected equal distribution?

(2) If I can run a test that says there is a difference between cities, and/or if each one is different from the expected distribution, is there an equivalent of the Tukey test where I can see which specific fruits are the ones that are different?

Thanks!

share|improve this question
1  
You might find useful clues in this related question, Multiple Chi-Squared Tests‌​. Also, your question seems related to your previous one, How to carry out multiple post-hoc chi-square tests on a 2 X 3 table?. – chl Apr 18 '11 at 19:23

1 Answer

With this many questions to ask of the data, you are approaching the border between a "test" and a "model" (not that such a sharp distinction exists except in the conceptualization of the problem).

A Poisson regression model, aka log-linear model, can answer these questions for you. The book The analysis of crossclassified data by Stephen Fienberg explains this family of models.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.