up vote 3 down vote favorite
share [g+] share [fb]

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!

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

or you could use as.vector(x)

link|improve this answer
feedback

It already is a vector.

tbl <- table(rpois(100, 10))
tbl[1]
tbl[2:5]
tbl[tbl > 10]
link|improve this answer
feedback

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

link|improve this answer
Wow, thanks! :D – Darren Green Sep 30 '09 at 8:33
1  
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 '09 at 19:20
feedback

Your Answer

 
or
required, but never shown

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