site_summary {ORFID} | R Documentation |
Summarize site information from Oregon RFID antenna reader data
Description
Summarizes detection information for unique antenna sites within antenna reader data compiled using import_ORFID
or join_multireader_data
.
Usage
site_summary(x)
Arguments
x |
antenna data compiled using |
Details
Creates a tibble grouped by SCD (site code; one row per unique SCD). The data frame contains the site code (SCD), the total number of records detected (REC), the number of unique tags detected (TAG_ID), and the time at which the first (FIR) and last (LAS) detections occurred on the array.
Value
Returns a tibble object.
Author(s)
Hugo Marques <biohmarques@gmail.com>
See Also
import_ORFID
for importing data files from Oregon RFID ORMR and ORSR antenna readers.
join_multireader_data
for combining data from Oregon RFID ORMR and ORSR antenna readers into a multi-reader array.
Examples
# Create a list containing compiled reader data:
readers <- list(reader_1, reader_2)
# Join data into a multi-reader array:
PIT_data <- join_multireader_data(readers)
# Summarize detection information for each unique site:
site_summary(PIT_data)