jpostscript {RSEIS} | R Documentation |
Get file name and recreate plot on a postsctipt device. This program makes an attempt to keep the same size plot as viewed in the screen.
jpostscript(name, P = NULL)
name |
Postscript file name |
P |
vector to fix the size, c(width, height) |
If P=c(10,12) is missing, program will attempt to use current plotting region via par to duplicated the size of the postscript device. Must close this device with dev.off() to finish.
Graphical Side Effect
Jonathan M. Lees<jonathan.lees.edu>
par, postscript, device
jjj = local.file('hi', 'eps') x= rnorm(10) y= rnorm(10) plot(x,y) print('resize the current plot') jpostscript(jjj) plot(x,y) dev.off()