Learn R Programming

trackeR (version 0.0.3)

plot.distrProfile: Plot distribution profiles.

Description

Plot distribution profiles.

Usage

"plot"(x, session = NULL, what = c("speed", "heart.rate"), multiple = FALSE, smooth = TRUE, ...)

Arguments

x
An object of class distrProfile as returned by distributionProfile.
session
A numeric vector of the sessions to be plotted, defaults to all sessions.
what
Which variables should be plotted?
multiple
Logical. Should all sessions be plotted in one panel?
smooth
Logical. Should unsmoothed profiles be smoothed before plotting?
...
Further arguments to be passed to smootherControl.distrProfile.

Examples

Run this code
data("runs", package = "trackeR")
dProfile <- distributionProfile(runs, session = 1:2,
    what = "speed", grid = seq(0, 12.5, by = 0.05))
plot(dProfile, smooth = FALSE)
plot(dProfile, smooth = FALSE, multiple = TRUE)
plot(dProfile, multiple = TRUE)

Run the code above in your browser using DataLab