#3-Way Frequency Table
mytable <- xtabs(~A+B+c, data=mydata)
ftable(mytable) # print table
What's the ~ in row 2? it's not in the R operator list.
Asked
Active
Viewed 115 times