x <- seq(0, 4*pi, length = 41)
temptrans <- make.transect(x = x*100, y = sin(x)*300)
plot (snip(temptrans, by = 200), markvertices = 1)
if (FALSE) {
## simulate some captures
tempcapt <- sim.capthist(temptrans, popn = list(D = 2,
buffer = 300), detectfn = 'HHN', binomN = 0,
detectpar = list(lambda0 = 0.5, sigma = 50))
## snip capture histories
tempCH <- snip(tempcapt, by = 20)
## collapse from 'transect' to 'count', discarding location within transects
tempCH <- reduce(tempCH, outputdetector = "count")
## fit secr model and examine H-T estimates of density
## fails with detectfn = 'HN'
fit <- secr.fit(tempCH, buffer = 300, CL = TRUE, detectfn = 'HHN', trace = FALSE)
derived(fit)
## also, may split an existing transect into equal lengths
## same result:
plot(snip(temptrans, by = transectlength(temptrans)/10),
markvertices = 1)
plot(snip(temptrans, length.out = 10), markvertices = 1)
}
Run the code above in your browser using DataLab