plot.running | R Documentation |
Plot Aggregated Wheel Running Data
## S3 method for class 'running'
plot(x, whlnum, whichplot = "run", ...)
x |
an object of class |
whlnum |
number of wheel to plot running data for. Currently only one number is accepted. |
whichplot |
which set of aggregated data will be plotted:
|
... |
further arguments passed to |
This function plots aggregated wheel running data.
Kevin Middleton (middletonk@missouri.edu)
read.dat
, bin.running
# 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')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.