dependence_tour {tourr} | R Documentation |
A dependence tour path.
Description
The dependence tour combines a set of independent 1d tours to produce a nd tour. For the special case of 2d, this is known as a correlation tour. This tour corresponds to the multivariate method known as generalised canonical correlation, and is used to investigate dependence between groups of variables.
Usage
dependence_tour(pos)
Arguments
pos |
a numeric vector describing which variables are mapped to which dimensions: 1 corresponds to first, 2 to second etc. |
Details
Usually, you will not call this function directly, but will pass it to
a method that works with tour paths like animate
,
save_history
or render
.
Examples
animate_xy(flea[, 1:3], dependence_tour(c(1, 2, 2)))
animate_xy(flea[, 1:4], dependence_tour(c(1, 2, 1, 2)))
animate_pcp(flea[, 1:6], dependence_tour(c(1, 2, 3, 2, 1, 3)))
[Package tourr version 1.2.0 Index]