print.rhabit.Rd
Print the formula used to specify the model and the estimated coefficients
# S3 method for rhabit print(x, ...)
x | a rhabit model fit using fit_langevin_ud |
---|---|
... | additionnal arguments, might be digits a non-null value specifying the minimum number of digits to be printed in values. |
The rhabit object passed in argument is returned.
data(tracks) fitted_langevin <- fit_langevin_ud(cbind(x,y) ~ grad_c1, data = tracks) print(fitted_langevin)#> #> Formula: #> cbind(x, y) ~ grad_c1 #> #> Coefficients: #> grad_c1 #> 5.42 #> Speed: #> [1] 10.8 #> #> #>