ggobi_display_get_tour_projection {rggobi}R Documentation

Get tour projection

Description

Get the tour projection from a GGobi tour.

Usage

ggobi_display_get_tour_projection(gd)

Arguments

gd

Details

This function retrieves the current projection matrix from a paused tour. (The tour must be paused so that R can run commands).

This can be used to record interesting projections of your data for later analysis.

Author(s)

Hadley Wickham <h.wickham@gmail.com>

Examples

g <- ggobi(mtcars)
d <- displays(g)[[1]]
## Not run: 
pmode(d) <- "2D Tour"
ggobi_display_get_tour_projection(d)
variables(d) <- list(X=names(mtcars))
ggobi_display_get_tour_projection(d)
MASS::eqscplot(as.matrix(mtcars) %*% ggobi_display_get_tour_projection(d))
## End(Not run)

[Package rggobi version 2.1.9 Index]