You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fit_ssm produces a compound tibble as output, even when fitting to a single track. The foieGras class is appended to each ssm fit object, rather than the whole tibble. So to use the print and plot methods, you need to call the individual fit objects:
fit <- fit_ssm(data, time.step = 6)
fit$ssm[[1]] - for summary print
plot(fit$ssm[[1]]) - and so on for fits to multiple individuals...
Help file has been updated to more clearly demonstrate this.
The object returned by
fit_ssm
is not afoieGras
object, so the print and plot methods can't be called on it.The text was updated successfully, but these errors were encountered: