Dear people,
I would like to create a table out of a data.frame.
How can I determine, which variables are put in the rows and which in the
columns?
I would like to get all the variables in the ROWS:
I am including a simple example:
D<-data.frame(age=c(8,9,10),county=c("B","W","W"))
the output should have the following structure:
8 B 1
8 W 0
9 B 0
9 W 1
10 B 0
10 W 1
Thank you very much for your help in advance!
Marion
[[alternative HTML version deleted]]
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.