Dear Christen,
I have imported my telemetry dataset to Movebank and downloaded the corresponding csv files. I've sent a subset of this data to you to take a look at. This imports successfully as a telemetry object using the as.telemetry function:
TurtTel <- as.telemetry("TurtleTelemetry.csv",
timezone="UTC",
projection=NULL,
UERE=NULL)
, however as one individual has only 1 datapoint, the following error is produced:
1: In max(v) : no non-missing arguments to max; returning -Inf
2: In min(dt) : no non-missing arguments to min; returning Inf
Therefore, when I try to run a ctmm with no accounting for autocorrelation (ctmm.fit(TurtTel)) the following error is reported:
Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE, :
arguments imply differing number of rows:
followed by a series of row numbers.
I also thought about changing the individual identifier to all be the same, as we're primarily interested in the behaviour of turtles from a single beach, not necessarily individuals, however if I try to import this updated csv using the same procedure above, the following warning message:
Error in `colnames<-`(`*tmp*`, value = c("x", "y")) :
attempt to set 'colnames' on an object with less than two dimensions
Do you have any suggestions?
Many thanks,
Aran