vote up 1 vote down star

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!

flag

3 Answers

vote up 1 vote down check

or you could use as.vector(x)

link|flag
vote up 2 vote down

If the table is named x, then just use c(x).

link|flag
Wow, thanks! :D – mathee Sep 30 at 8:33
This is bad style - you shouldn't use c() for the side effect of stripping attributes. Be explicit and use as.vector() – hadley Oct 2 at 19:20
vote up 2 vote down

It already is a vector.

tbl <- table(rpois(100, 10))
tbl[1]
tbl[2:5]
tbl[tbl > 10]
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.