plot_sl {amt} | R Documentation |
Plot step-length distribution
Description
Plot step-length distribution
Usage
plot_sl(x, ...)
## S3 method for class 'fit_clogit'
plot_sl(x, n = 1000, upper_quantile = 0.99, plot = TRUE, ...)
## S3 method for class 'random_steps'
plot_sl(x, n = 1000, upper_quantile = 0.99, plot = TRUE, ...)
Arguments
x |
|
... |
Further arguments, none implemented. |
n |
|
upper_quantile |
|
plot |
|
Value
A plot of the step-length distribution.
Examples
data(deer)
# with random steps
deer[1:100, ] |> steps_by_burst() |> random_steps() |> plot_sl()
deer[1:100, ] |> steps_by_burst() |> random_steps() |> plot_sl(upper_quantile = 0.5)
[Package amt version 0.2.2.0 Index]