Skip to content
Prev 261433 / 398502 Next

creating a vector from a file

So you need to read a file into R in that format?

Try changing the values in ?read.table. Using the example, I was able
to get the data using:

read.table("clipboard", sep = "=", header = F, colClasses =
c("character", "numeric"))
On Tue, May 31, 2011 at 10:19 AM, heimat los <heimatlos72 at gmail.com> wrote: