Top "R-table" questions

R has a table function which creates a matrix-like object.

Make a table showing the 10 largest values of a variable in R?

I want to make a simple table that showcases the largest 10 values for a given variable in my dataset, as …

r subset tabular r-table
R error - Table of extent 0

I'm a complete newbie to R so I'm currently trying to work my way through Youtube videos and books as …

r r-table
How to access values in a frequency table

I 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