Thank you Jesse and Chris,
I have made progress! Your advice helped. However, I am running into a new problem. I keep getting the below error when I attempt to produce a variogram.
> vg.cilla<-variogram(serow)
Error in rep(0, nrow(data)) : invalid 'times' argument
Below is my current script and how my data frame looks like before converting into as.telemetry;
df <- read.csv("C:/Users/Kushaal/Downloads/serow_trial2a.csv"
, stringsAsFactors = FALSE)
df$timestamp <- as.POSIXct(df$timestamp, tz = "UTC", format = "%Y-%m-%d %H:%M:%OS")
serow <- as.telemetry(df, timezone="UTC")
#Plotthepositions
plot(serow)
#Calculatevariogram
vg.serow<-variogram(serow)
Could there be an error still in my timestamp? Sorry I am fairly new to this field.