| read.captures {secr} | R Documentation |
Input raw detection (capture) data for spatially explicit capture–recapture.
read.captures(file, ...)
file |
character string with name of text file |
... |
other arguments to be passed to read.table |
This brief function merely calls read.table and is therefore technically redundant. It accepts whatever data are in file. The result is used as input to make.capthist.
A dataframe.
Murray Efford murray.efford@otago.ac.nz
## Not run:
## assumes 'capt.txt' in working folder
temp <- read.captures(file = 'capt.txt', col.names =
c('Session','ID','Occasion', 'X', 'Y'))
## End(Not run)