trackeR (version 1.5.2)

plot.distrProfile: Plot distribution profiles.

Description

Plot distribution profiles.

Usage

# S3 method for distrProfile
plot(x, session = NULL, what = NULL,
  multiple = FALSE, smooth = FALSE, ...)

Arguments

x

An object of class distrProfile as returned by distribution_profile.

session

A numeric vector of the sessions to be plotted, defaults to all sessions.

what

Which variables should be plotted? Defaults to all variables in object (what = NULL).

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 smoother_control.distrProfile.

Examples

Run this code
if (FALSE) {
data('runs', package = 'trackeR')
dProfile <- distribution_profile(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 DataCamp Workspace