R has a table function which creates a matrix-like object.
I'm a complete newbie to R so I'm currently trying to work my way through Youtube videos and books as …
r r-tableI have a frequency table, counting the frequency of elements in a vector a = table(c(0,1,1,1,0,2,2,4,1,2,3,2,1,2,3,1,1,1,2,3,4,1,1,0)) a # 0 1 2 3 4 # 3 10 6 3 2 I know I …
r r-table