How to print from S-PLUS
To print from S, use the command:
postscript(file="/tmp/filename.ps")
substituting a name for filename. Then use the commands you would
normally use to generate the plot. To save the plot into the file,
type:
graphics.off()
This will generate the file "/tmp/filename.ps", which you can print with
the lpr command from the athena% prompt:
lpr -Pprinter /tmp/filename.ps
where "printer" is the name of the printer where you want to print it.
|