In SPSS, it is (relatively) easy to create a cross tab with multiple variables using the factors (or values) as the table heading. So, something like the following (made up dat
You could use a custom function to use rbind() on several tables, something like this:
rbind()
multitab <- function(...){ tabs<-list(...) tablist<-lapply(tabs,table) bigtab<-t(sapply(tablist,rbind)) bigtab }