fitted.rwalc | R Documentation |
Subset the fitted track to return only those locations that correspond to times and segments present in the observed track.
## S3 method for class 'rwalc'
fitted(object, vel = FALSE, se = FALSE, ...)
object |
A fitted object of class "rwalc". |
vel |
Logical indicating whether estimated velocities should be returned. |
se |
Logical indicating whether estimated standard errors should be returned. |
... |
Ignored. |
Returns a dataframe of fitted track locations with columns: - 'segment': track segment - 'date': time (as GMT POSIXct) - 'x': x coordinate - 'y': y coordinate - 'x.v': x component of velocity - 'y.v': y component of velocity - 'x.se': standard error of x coordinate - 'y.se': standard error of y coordinate - 'x.v.se': standard error of x component of velocity - 'y.v.se': standard error of x component of velocity The velocities are omitted when 'vel' is 'FALSE' and the standard errors are omitted when 'se' is 'FALSE'.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.