Hi Chris.
I have run into a problem when trying to calculate pairwise proximity and distance metrics between two individuals of a different species.
In short, the problem I have is that their ctmm's have different projections because I analysed them seperately. I know that you can change the projection of a telemetry object, but is it possible to change the projection of a ctmm object?
This is what I tried to do to rectify the issue (as what would work with a telemetry object)
test_ctmm <- list(pike_muddyfoot_ctmm_fits$F59880, roach_muddyfoot_ctmm_fits$F59707)
ctmm::projection(
test_ctmm ) <-ctmm::median(
test_ctmm )
Error in getMethod("median", CLASS) :
Cannot find method median for class ctmm
I am assuming that I am unable to change the projection once the movement has been modelled.
Some context about the data I am working with. My data is from a multi-experimental lake study where we tracked 3 different species of fish (2 prey: roach (30 individuals) and perch (30 individuals), 1 predator: northern pike (6 individuals)) in each lake. Median sampling interval for each species ~4secs, tracked over ~36 days. I'm interested in estimating the interaction rates, and possible predation events, between predator and prey.
As you can imagine, I have a lot of location data, and running the ctmm's took a very long time, so if I can avoid re-running these, that would be ideal.
Thanks for your time
Marcus