Hello,
i think i have a problem that is rly easy to solve, maybe i just got a bad day or sth..
Ive made an experiment with 4 groups, below you can see the answers of a rating scale 1 to 7.
The value -1 is just a control answer, that should mostly occure in the control group (= KG)
Obviously it does, but how to check significance?
> tally(WN~group, data = data_reduziert)
group
WN EG1 EG2 EG3 KG
-1 16 21 29 41
1 6 3 0 0
2 12 6 4 1
3 11 14 3 3
4 31 35 24 21
5 9 3 9 10
6 2 5 6 7
7 1 3 16 7
Ive tried chi square test:
> chisq.test(table(data_reduziert$group, data_reduziert$WN == "-1"))
Pearson's Chi-squared test
data: table(data_reduziert$group, data_reduziert$WN == "-1")
X-squared = 18.341, df = 3, p-value = 0.000374
is this the right way? But i also want to know between which groups it differs: so i need a Post hoc test
How do I do that? chi.posthoc.test didnt work