Skip to content
Prev 67790 / 398502 Next

How to create a vector with "one", "two", "three", ...?

On Fri, 2005-04-15 at 14:30 -0400, Frank Duan wrote:
rvect <- c("one", "two", "three")
rvect
[1] "one"   "two"   "three"


Is it what you want?

F