gtk {gtkDevice}R Documentation

GTK+ Graphics Device

Description

A variant of the X11 graphics device.

Usage

gtk(display="", width=7, height=7, pointsize=12)
GTK(display="", width=7, height=7, pointsize=12)

Arguments

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.

Author(s)

Lyndon Drake

References

http://www.gtk.org for the GTK+ (GIMP Tool Kit) libraries.

See Also

x11, Devices.

Examples

  gtk()
  plot(1:10)
  gtk()
  par(mfrow=c(2,2))
  x <- rnorm(100)
  plot(x)
  hist(x)
  boxplot(x)  

[Package gtkDevice version 1.9-4 Index]