Displaying 1 result from an estimated 1 matches for "chdata".
Did you mean:
hdata
2010 Nov 08
1
RMark error: only 0's may be mixed with negative subscripts
...:
> time.int <- c(0,0,1,0,0)
> model <- mark(dat, model = "Robust", time.intervals = time.int)
Error in time.intervals[1:(i - 1)] :
only 0's may be mixed with negative subscripts
This is what I tried to do overall:
###################
library(RMark)
dat <- import.chdata("/home/umesh/Desktop/capture history.txt")
head(dat)
time.int <- c(0,0,1,0,0)
model <- mark(dat, model = "Robust", time.intervals = time.int)
###################
I am attaching the simulated capture histories in the file 'capture
history.txt' as well if that wil...