|
|||||
Une fonction pour simplifier les tableaux sous R
Description
Usage
Arguments
Exemples
Code
simplefreq <- function (x,y=NULL,margin=1,html=NULL) {
if (is.null(y)) {simplefreq.tab<-cbind(data.frame(addmargins( prop.table(table(x)))), data.frame(addmargins(table(x)))[2]) colnames(simplefreq.tab)<-c(deparse(substitute(x)),"Percentage","Count") RESTABLE<-simplefreq.tab MINCHI2=NULL MINOR=NULL CHI2=NULL } if (!is.null(y)) { simplefreq.tab0<-table(x,y) simplefreq.chi<-chisq.test(simplefreq.tab0, correct=FALSE) if (margin==1) { simplefreq.tab<-cbind(addmargins(prop.table( addmargins(simplefreq.tab0,1),1),2), rowSums(addmargins(simplefreq.tab0,1))) colnames(simplefreq.tab)<-c(colnames(simplefreq.tab0),"Total","Count") rownames(simplefreq.tab)<-c(rownames(simplefreq.tab0),"All") } if (margin==2) { simplefreq.tab<-rbind(addmargins(prop.table( addmargins(simplefreq.tab0,2),2),1), t(colSums(addmargins(simplefreq.tab0,2)))) rownames(simplefreq.tab)<-c(rownames(simplefreq.tab0),"Total","Count") colnames(simplefreq.tab)<-c(colnames(simplefreq.tab0),"All") } RESTABLE<-simplefreq.tab CHI2<-simplefreq.chi WARNING1 <- "Mining chi-square : what would be the chi-square if we were analyzing a 2*2 table. " WARNING2 <- "Sign is used for over (+) or under(-) representation." MINCHI2<-sign(simplefreq.chi$observed-simplefreq.chi$expected)* (simplefreq.chi$observed-simplefreq.chi$expected)**2/ simplefreq.chi$expected/ ((1-prop.table(simplefreq.tab0)/prop.table( simplefreq.tab0,2))* (1-prop.table(simplefreq.tab0)/prop.table( simplefreq.tab0,1))) WARNING1 <- "Mining odds ratio : what would be the odds ratio if we were analyzing a 2*2 table. " n11<-simplefreq.tab0 n12<-(n11/prop.table(n11,1))-n11 n21<-(n11/prop.table(n11,2))-n11 n22<-sum(n11)-n12-n21-n11 MINOR<-(n11/n12/(n21/n22)) } if (!is.null(html)) { library(R2HTML) HTML(simplefreq.tab,html) } structure(list(simplefreq=RESTABLE,chi2=CHI2, minor=MINOR,minnchi2=MINCHI2)) }
|
English |
Français
News
![]() OgO: plus ici|more here [Publications] Neumann, Nils, Olivier Godechot et al. , , Rapid earnings growth in finance concentrates top earnings in a few large: plus ici|more here [Publications] Elvira, Marta and Olivier Godechot, Top earners are increasingly isolated at work – here’s why it matters, The conversation: plus ici|more here Tweets (rarely/rarement): @OlivierGodechot |
||||
HOP A CMS |