Skip to content

Instantly share code, notes, and snippets.

@drewconway
Created April 2, 2010 15:11
Show Gist options
  • Save drewconway/353236 to your computer and use it in GitHub Desktop.
Save drewconway/353236 to your computer and use it in GitHub Desktop.
library(survival)
library(ggplot2)
library(Design)
### Test data generation ###
# Chi-square test
count<-1000
cs1<-rchisq(count,1)
cs2<-rchisq(count,2)
cs_test<-as.data.frame(cbind(cs1,cs2,1:count))
png("cs_test.png",width=1000,height=450,res=100)
ggplot(cs_test,aes(V3))+geom_density(aes(x=cs2,fill="k=2",alpha=0.25))+
geom_density(aes(x=cs1,fill="k=1",alpha=0.25))+xlim(-1,20)+opts("Chi-square test")
dev.off()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment