Learn R Programming

tourr (version 0.5.1)

display_dist: 1d distribution tour path animation.

Description

Animate a 1d tour path with a density plot or histogram.

Usage

display_dist(method = "density", center = TRUE,
    half_range = NULL, rug = FALSE, ...)

animate_dist(data, tour_path = grand_tour(1), ...)

Arguments

method
display method, histogram or density plot
center
should 1d projection be centered to have mean zero (default: TRUE). This pins the centre of distribution to the same place, and makes it easier to focus on the shape of the distribution.
half_range
half range to use when calculating limits of projected. If not set, defaults to maximum distance from origin to each row of data.
rug
draw rug plot showing position of actual data points?
...
other arguments passed on to animate
data
matrix, or data frame containing numeric columns
tour_path
tour path generator, defaults to 2d grand tour

See Also

animate for options that apply to all animations

Examples

Run this code
animate_dist(flea[, 1:6])

# When the distribution is not centred, it tends to wander around in a
# distracting manner
animate_dist(flea[, 1:6], center = FALSE)

# Alternatively, you can display the distribution with a histogram
animate_dist(flea[, 1:6], method = "hist")

Run the code above in your browser using DataLab