getDisplayWindow.ggobi {Rggobi}R Documentation

Get GtkWindow object of a GGobi display

Description

This allows the caller to retrieve the GtkWindow associated with a given GGobi display. This window can then be used in via the RGtk package to manipulate the other widgets, establish callbacks, etc.

Usage

getDisplayWindow.ggobi(display = 1, .gobi = getDefaultGGobi(), expandClasses = TRUE)

Arguments

display an identifier for the particular display within the GGobi instance.
.gobi the GGobi instance of interest
expandClasses a logical value indicating whether to compute the actual class of the GtkObject returned and use that as the class name(s).

Details

Value

An object of class GtkObject.

Author(s)

Duncan Temple Lang <duncan@research.bell-labs.com>

References

http://www.omegahat.org/RGtk http://www.ggobi.org/

See Also

ggobi

Examples


 data(mtcars)
 ggobi(mtcars)

 getDisplayWindow.ggobi()

 d = scatterplot.ggobi("cyl", "mpg")
 getDisplayWindow.ggobi(d)


[Package Rggobi version 1.1-3 Index]