Re: [R] plotting to stdout (while reading from stdin?)

2008-03-02 Thread Gene Selkov
Hi Dirk, I didn't at first pay attention to your comment about littler, as my original problem of plotting to stdout was solved. But it was just part of the larger problem: I actually need to be piping the data with the code for making the picture in, and getting the picture out without

Re: [R] plotting to stdout (while reading from stdin?)

2008-03-02 Thread Gene Selkov
On Sun, 2 Mar 2008, Gabor Grothendieck wrote: You can do this: Lines - A,B 1,2 3,4 DF - read.csv(textConnection(Lines)) which is slightly simpler than the examples there. Thank you Gabor, I made it even simpler by replacing the Lines object with a string contstant. It works