table.all = function(...) { args = list(...) dnn = names(args) x = args[[1]] y = args[[2]] print(table(x,y,dnn=dnn)) print("percentage by row") print( round( prop.table(table(x,y,dnn=dnn),1) * 100 ) ) print("percentage by col") print( round( prop.table(table(x,y,dnn=dnn),2) * 100 ) ) print(chisq.test(table(x,y,dnn=dnn)) ) }
Thursday, October 22, 2009
R table, percentages and chi square test like in stata
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment