Can I extract result row of table()?
x <- c(5, 5, 8, 8, 8, 27) table(x)
x 5 8 27 2 3 1 I want a way to use only "2, 3, 1", nomatter table or what other function used. Thanks.
x <- c(5, 5, 8, 8, 8, 27) table(x)
x 5 8 27 2 3 1 I want a way to use only "2, 3, 1", nomatter table or what other function used. Thanks.