variogram
object overlayed with a continuous-time movement model guesstimated from the variogram's shape. Sliders are given to adjust the parameter guesstimates and the result can be saved to a global variable. The intention of this function is to facilitate good starting guesses for ctmm.fit
.variogram.fit(variogram,range=TRUE,CTMM=NULL,name="variogram.fit.model",...)
variogram
object from the output of variogram
.ctmm
object format. The slider range is triple this value.plot.variogram
.range=TRUE
, sigma
is the asymptote of the variogram and tau
is an array of autocorrelation timescales. The position timescale is roughly the time lag it takes of the variogram to reach 63% of its asymptote. The velocity autocorrelation timescale visually corresponds to width of the concave bowl shape at the beginning of the variogram. When range=FALSE
, sigma
is the asymptotic slope of the variogram and only the velocity timescale is finite.
By default, parameter values are estimated from the shape of the variogram. If this fails, the CTMM
option can provide alternative initial guesstimates.ctmm.fit
, plot.variogram
, variogram
.#Load package and data
library(ctmm)
data(buffalo)
#Extract movement data for a single animal
cilla <- buffalo[[1]]
#Calculate variogram
SVF <- variogram(cilla)
# generate a visual fit of the variogram (requires RStudio)
variogram.fit(SVF)
Run the code above in your browser using DataLab