import_old_readers: Import from previous generations of Oregon RFID antenna readers
Description
Only data collected using Oregon RFID (radio-frequency identification) ORMR (Oregon RFID Multi-Reader) and ORSR (Oregon RFID Single Reader) antenna readers can be imported using import_ORFID. Data from previous generations of readers must be imported using import_old_readers. Only detections are retained during compilation (events are removed).
This function will only work with raw data downloaded directly from Oregon RFID stationary readers. The files must be delimited (tab, comma, or semicolon) and unedited by the user.
Usage
import_old_readers(file, delim, verbose = FALSE)
Value
Returns a tibble object.
Arguments
file
.txt file generated by an Oregon RFID reader.
delim
field/column delimiter, which must be tab ('\t'), comma (',') or semi-colon (';').
verbose
If TRUE, a description of the compiled data is printed to the console.
Author
Hugo Marques <biohmarques@gmail.com>
Details
The field/column delimiter must be tab, comma or semi-colon for data compilation and further analysis. The function cannot be used for space delimited data.
Data compiled using import_ORFID and import_old_readers can be joined together using join_multireader_data.
Note that corruption may occur in reader data files. Check your data files and compiled data carefully to ensure accuracy.
# Import a single comma-deliminated data file from an old ORFID readerimport_old_readers(file = system.file("extdata/orfid_old_data_file.txt",
package = "ORFID"), delim = ",")