Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Blog
Chi Square Tests [Is the die fair?]
freq = c(22, 21, 22, 27, 22, 36) probs = c(1,1,1,1,1,1)/6 chisq.test(freq,p=probs) N=sum(freq) E=N*probs X2 = sum((freq-E)^2/E) sum(freq^2/E)-N # Chi-squared length(freq)-1 # df pchisq(X2,df=6-1,lower.tail=FALSE) # p-value
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Sample R program of all basic functions
21-09-2020Intpoli
SEIR-Modell
TH1
ax² + bx + c = 0 (Solução e gráfico com as raízes)
ggplot2 example
Sign test
Sensitivity to Escitalopram MACE count
Correlation
histograms for survey stats and fats
stackse - search stackoverflow differently
Please log in to post a comment.