Skip to content
Prev 138199 / 398506 Next

plotting to stdout (while reading from stdin?)

You can do this:

Lines <- "A,B
1,2
3,4"
DF <- read.csv(textConnection(Lines))

which is slightly simpler than the examples there.
On Sun, Mar 2, 2008 at 5:59 PM, Gene Selkov <selkovjr at uchicago.edu> wrote: