[BioC] help with large Rgraphviz output

Seth Falcon sfalcon at fhcrc.org
Tue Jun 6 23:00:20 CEST 2006


"Kimpel, Mark William" <mkimpel at iupui.edu> writes:

> Seth,
>
> I am a novice at manipulating options in R and working with output
> devices.
>
> Assuming I want to set my postscript paper size as Width= 15" and
> Height= 15", what code would set the option for this?
>
> Also, how to I get the plot method for Rgraphviz to output to postscript
> instead of screen?

Warning: untested code ahead

I think it would look something like this:

  ## a graphNEL instance you want to plot
  g 
  
  ## setup the postscript device.  All plot commands will be 
  ## sent to this device until you call dev.off().  
  postscript(file="bigGraphPlot.ps", paper="special",
             width=15, height=15)
  ## do the plot, you should not see anything on screen
  plot(g)
  ## close the graphics device
  dev.off()


You might also want to try the pdf() device.



More information about the Bioconductor mailing list