In R, I have a 1-row table. How do I convert that to a vector?
Specifically, the table is this:
0 1 2 3 4 21 35 46 62 36
I've tried bracket notation but to no avail!
or you could use as.vector(x)
as.vector(x)
If the table is named x, then just use c(x).
c()
as.vector()
It already is a vector.
tbl <- table(rpois(100, 10)) tbl[1] tbl[2:5] tbl[tbl > 10]
Stack Overflow is a collaboratively edited question and answer site for programmers – regardless of platform or language. It's 100% free, no registration required.
about » faq »
tagged
asked
2 months ago
viewed
132 times
latest activity