displays.GGobi {rggobi} | R Documentation |
Gets list of displays in the specified GGobi instance
displays.GGobi(x)
x |
GGobi object |
A display basically corresponds to a window in GGobi. A display may contain mutliple plots within it. For example, the scatterplot matrix contains $p times p$ plots.
Use this function to obtain a reference to a display (they are
numbered in the order they are created) so you can change
display mode, set variables (variables<-.GGobiDisplay
),
or save a static image to disk.
Hadley Wickham <h.wickham@gmail.com>
display
to create displays
g <- ggobi(mtcars) displays(g) display(g[1]) displays(g)