You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lmb.dat <- data.frame(sample=1:4,
Total= c(18,18,19,35), # total number of fish (n)
Recaps= c( 0, 9, 5,12), # num recaptured fish (m)
Unmarked=c(18, 9,14,23), # num fish not recaptured
At_Large=c( 0,18,27,41), # num marked fish prior to sample (M)
Rsubi= c(18,18,19, 0)) # num marked fish returned to pop (R)
lmb.dat
library(FSA)
lmb.num1 <- mrClosed(lmb.dat, n=lmb.dat$Total, m=lmb.dat$Recaps, M=lmb.dat$At_Large, method="Schnabel")
summary(lmb.num1)
lmb.num2 <- mrClosed(lmb.dat, n=lmb.dat$Total, m=lmb.dat$Recaps, R=lmb.dat$Rsubi, method="Schnabel")
summary(lmb.num2)
The text was updated successfully, but these errors were encountered:
For example,
The text was updated successfully, but these errors were encountered: