Re: [R] HPGL or PCL plotting device? Or otherwise plotting plots

2014-07-09 Thread Thomas Levine
Actually, this doesn't _quite_ do what I want; I want different R colors (1, 2, 3, &c.) to select different pens in HPGL ("SP1", "SP2", "SP3", &c.), but the HPGL file I get selects only pen 1. A hacky way to do this would be to generate a few different postscript files for the different colors on

Re: [R] HPGL or PCL plotting device? Or otherwise plotting plots

2014-07-09 Thread Thomas Levine
Oh it was easier than I thought. postscript('project-contracts.ps') hist(log(projects$n.contracts)) dev.off() Then run this from the shell. pstoedit -f plot-hpgl project-contracts.ps project-contracts.hpgl And send it to the plotter. On 09 Jul 13:10, Thomas Levine wrote: > Hi, > > I w

[R] HPGL or PCL plotting device? Or otherwise plotting plots

2014-07-09 Thread Thomas Levine
Hi, I want to print plots on a Roland DXY-1100 plotter. How can I do this from R? I think the easiest thing would be a graphics device for Printer Command Language or Hewlett-Packard Graphics Language, but I haven't managed to find any of those. Thanks Tom __