Displaying 1 result from an estimated 1 matches for "mortacap2".
2005 Aug 16
2
data manipulation help
...1 1 0
0 0 1 0
10 1 0 1 0 1 0
0 0 0 0
so I can know how many times every individual was captured, 0= not capture,
1=capture.
persistence<-apply(mortacap2,1,sum)
I also want to know when was the first and the last capture for every
individual,
if I use:
which(mortacap2[1,]==1)
X18.10.2004 X26.10.2004 X28.10.2004 X30.10.2004
1 5 6 7
I can estimate manually row by row, but I dont get how t...