join_multireader_data: Combine data from multiple antenna readers
Description
Function to combine data from unique readers into an array, using reader data compiled using import_ORFID.
Usage
join_multireader_data(x, verbose = FALSE)
Value
Returns a tibble object of distinct detections from multiple antenna readers.
Arguments
x
A list object containing data frames compiled using import_ORFID.
verbose
If TRUE, a description of the compiled data is printed to the console.
Author
Hugo Marques <biohmarques@gmail.com>
Details
As in bind_rows, the output of join_multireader_data will contain a column if that column appears in any of the data inputs. The function creates a unique factor variable, LOC (location), which is a combination of SCD (site code) and ANT (antenna).
See Also
import_ORFID for importing data files from Oregon RFID ORMR and ORSR antenna readers.
# 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)