plot.running: Plot Aggregated Wheel Running Data

Description Usage Arguments Details Author(s) See Also Examples

Description

Plot Aggregated Wheel Running Data

Usage

1
2
## S3 method for class 'running'
plot(x, whlnum, whichplot = "run", ...)

Arguments

x

an object of class running, most likely returned by bin.running.

whlnum

number of wheel to plot running data for. Currently only one number is accepted.

whichplot

which set of aggregated data will be plotted: run, max, int, and rpm are valid.

...

further arguments passed to plot

Details

This function plots aggregated wheel running data.

Author(s)

Kevin Middleton (middletonk@missouri.edu)

See Also

read.dat, bin.running

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# Load the 2006-11-05 running data for computer A
data(A061105)

# Aggregate running data into 20 minute bins
A.aggr <- bin.running(A061105, computer = 'A', bin.size = 20)

# Plot aggregated data for wheel number 1.
plot(A.aggr, whlnum = 1, whichplot = 'run', col = 'red')
plot(A.aggr, whlnum = 1, whichplot = 'max')
plot(A.aggr, whlnum = 1, whichplot = 'int')
plot(A.aggr, whlnum = 1, whichplot = 'rpm')

kmiddleton/binning documentation built on May 20, 2019, 12:51 p.m.