python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Is there an R function for a multiple group goodness of fit chi squared test?
S.giganteus <- matrix(c(0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 2, 3, 0,...
André Rabie
Votes: 0
Answers: 1
How to adjust degree of freedom in Chi-Square Goodness-of-Fit Test in SAS?
I want to check p-value in chi-Square test, and this is my code in SAS.
data dataA;
input Ball $ observed;
datalines;
A 1
B 0
C 0
D 0
E 9
;
run;
proc freq data=dataA;
tables Ball / chisq;
...

Jin.W.Kim
Votes: 0
Answers: 1