Display a Graphics Object

DESCRIPTION:

Sends a graphics object to the current graphics device. This function is deprecated.

USAGE:

print.graphics(x) 

REQUIRED ARGUMENTS:

x
a graphics object, i.e., an object of mode "graphics"

SIDE EFFECTS:

The picture described by the object x is displayed on the current graphics device.

DETAILS:

print.graphics is called automatically by print.default, so that just typing x will cause it to be displayed.

BUGS:

Graphics objects should be treated as experimental - there are graphics objects which print.graphics can not display.

SEE ALSO:

.

EXAMPLES:

g <- graphics(plot(x,y)) #save a plot 
g #now display it