Deducer Manual:
Poker AI Research:
Statistical Consulting Blog
es
Flips a data frame so that the rows are columns and the columns are rows
Transposing data(birthwt) yields the following code:
data(birthwt)
birthwt<-as.data.frame(t(birthwt))