plot.window(screen.name)
screen.name
|
The name of the screen enclosed in quotes that will have the plot
window.
|
After successfully opening the window, some instructions about printing are given. The graphics window is set to be the same ratio as an 8 1/2 by 11 inch sheet of paper, and the plots are in portrait format. The window defaults are in the data set .motif.options.
Open a plot window on your machine:
plot.window()
You are running S on a remote machine but would like a graphics window
on your local machine. The machine you are sitting at is called
RA_FISHER.stat. In UNIX on your local machine type in xhost + .
Now run Splus
in a terminal window that is connected to the remote machine.
plot.window("RA_FISHER.stat:0")
Note the addition of the :0 to the machine name.
If this does not work, the name may not be in the right form. The
sure fire way is to use the IP number of your machine in place of
the alphabetic name. Typically an IP number is a set of 4 1-3 digit
numbers separated by periods. E.g 151.1.62.60 add :0 to this to
specify the screen:
plot.window("151.1.62.60:0")