smoother.trackeRdata {trackeR} | R Documentation |
Smoother for trackeRdata
objects.
Description
Smoother for trackeRdata
objects.
Usage
## S3 method for class 'trackeRdata'
smoother(object, session = NULL, control = list(...), ...)
Arguments
object |
An object of class |
session |
The sessions to be smoothed. Default is all sessions. |
control |
A list of parameters for controlling the smoothing
process. This is passed to |
... |
Arguments to be used to form the default |
Value
An object of class trackeRdata
.
See Also
Examples
## Not run:
data('run', package = 'trackeR')
## unsmoothed speeds
plot(run, smooth = FALSE)
## default smoothing
plot(run, smooth = TRUE)
## smoothed with some non-default options
runS <- smoother(run, fun = 'median', width = 20, what = 'speed')
plot(runS, smooth = FALSE)
## End(Not run)
[Package trackeR version 1.6.0 Index]