Data in the DENSITY formats for capture data and trap layouts may be
imported as a capthist
object for analysis in secr. Data in
a capthist
object may also be exported in these formats for use
in DENSITY (Efford 2012). read.capthist
inputs data from text
files and constructs a capthist
object in one step using the
functions read.traps
and make.capthist
. Data may also be
read from Excel spreadsheets if the package readxl is installed (see
secr-datainput.pdf).
read.capthist(captfile, trapfile, detector = "multi", fmt = c("trapID","XY"),
noccasions = NULL, covnames = NULL, trapcovnames = NULL,
cutval = NULL, verify = TRUE, noncapt = "NONE", tol = 0.01, snapXY = FALSE,
markocc = NULL, ...)write.capthist(object, filestem = deparse(substitute(object)),
sess = "1", ndec = 2, covariates = FALSE, tonumeric = TRUE, ...)
name of capture data file
name of trap layout file or (for a multi-session captfile) a vector of file names, one for each session
character value for detector type (`single', `multi', `proximity', etc.)
character value for capture format (`trapID' or `XY')
number of occasions on which detectors were operated
character vector of names for individual covariate fields in `captfile'
character vector of names for detector covariate fields in `trapfile'
numeric, threshold of signal strength for `signal' detector type
logical if TRUE then the resulting capthist object is
checked with verify
character value; animal ID used for `no captures'
numeric, snap tolerance in metres
logical; if TRUE then fmt = 'XY' uses nearest trap within tol
integer vector distinguishing marking occasions (1) from sighting occasions (0)
other arguments passed to read.table
,
write.table
and count.fields
capthist
object with the captures and trap locations to export
character value used to form names of output files
character session identifier
number of digits after decimal point for x,y coordinates
logical or a character vector of covariates to export
logical for whether factor and character covariates should be converted to numeric values on output
write.capthist
does not work for mark--resight data.
read.capthist
captfile
should record one detection on each line. A detection
comprises a session identifier, animal identifier, occasion number (1,
2,...,S where S is the number of occasions), and a
detector identifier (fmt = "trapID"
) or X- and Y-coordinates
(fmt = "XY"
). Each line of trapfile
has a detector
identifier and its X- and Y-coordinates. In either file type the
identifiers (labels) may be numeric or alphanumeric values. Values
should be separated by blanks or tabs unless (i) the file name ends in
`.csv' or (ii) sep = ","
is passed in ..., in which case commas
are assumed. Blank lines and any text after `#' are ignored. For further
details see secr-datainput.pdf,
make.capthist
and `Data formats' in the help for DENSITY.
The noccasions
argument is needed only if there were no
detections on the final occasion; it may be a positive integer (constant
across all sessions) or a vector of positive integers, one for each
session. covnames
is needed only when captfile
includes
individual covariates. Likewise for trapcovnames
and
detector covariates. Values of noccasions
and covnames
are passed directly to make.capthist
, and trapcovnames
is
passed to read.traps
.
A session identifier is required even for single-session
capture data. In the case of data from multiple sessions,
trapfile
may be a vector of file names, one for each session.
Additional data may be coded as for DENSITY. Specifically,
captfile
may include extra columns of individual covariates, and
trapfile
may code varying usage of each detector over occasions
and detector covariates.
markocc
is needed only if sightings of unmarked animals are potentially
recorded on some occasions. If the data span multiple sessions with differing
combinations of marking and sighting occasions then markocc
may be a
list with one vector per session.
The function read.telemetry
is a simplified version of
read.capthist
for telemetry data.
write.capthist
For a single-session analysis, DENSITY requires one text file of
capture data and one text file with detector coordinates (the `trap
layout' file). write.capthist
constructs names for these files
by appending `capt.txt' and `trap.txt' to filestem
which
defaults to the name of the capthist object. If filestem
is
empty then output goes to the console.
If object
contains multiple sessions with differing
traps
then a separate trap layout file is exported for each
session and each file name includes the session name. All capture data
are exported to one file regardless of the number of sessions. The
DENSITY format used is `TrapID' except when x-y coordinates are
specific to a detection (i.e., polygon and transect detectors).
covariates
controls the export of both detector and individual
covariates. If it is TRUE or FALSE then it is taken to apply to
both. A vector of covariate names is used as a lookup for both
detector and capthist covariate fields: covariates are exported if
their name matches; this may be used to export any combination of
(uniquely named) detector and capthist covariates.
Existing text files will be replaced without warning. In the case of a
multi-session capthist file, session names are taken from
object
rather than sess
. Session names are truncated to
17 characters with blanks and commas removed.
To export data in comma-delimited (`.csv') format, pass sep =
","
in .... The resulting files have extension `.csv' rather than
`.txt' and may be opened with spreadsheet software.
Efford, M. G. (2012) DENSITY 5.0: software for spatially explicit capture--recapture. Department of Mathematics and Statistics, University of Otago, Dunedin, New Zealand https://www.otago.ac.nz/density/.
read.telemetry
, read.traps
, make.capthist
,
write.captures
, write.traps
, read.table
## export ovenbird capture histories
## the files "ovenCHcapt.txt" and "ovenCHtrap.txt" are
## placed in the current folder (check with getwd() or dir())
if (FALSE) {
write.capthist(ovenCH)
}
Run the code above in your browser using DataLab