gtk {gtkDevice} | R Documentation |
A variant of the X11 graphics device.
gtk(display="", width=7, height=7, pointsize=12) GTK(display="", width=7, height=7, pointsize=12)
display |
the display on which the graphics window will appear.
The default is to use the value in the user's environment variable
DISPLAY . |
width |
the width of the plotting window in inches. |
height |
the height of the plotting window in inches. |
pointsize |
the default pointsize to be used. |
Lyndon Drake
http://www.gtk.org for the GTK+
(GIMP Tool Kit) libraries.
gtk() plot(1:10) gtk() par(mfrow=c(2,2)) x <- rnorm(100) plot(x) hist(x) boxplot(x)