Read Count Data from Generic Count Data (_Count.csv)
read_counts.Rd
This function reads and processes point count data from Generic files in either CSV or TXT format. It can handle both BRUVs (Baited Remote Underwater Video Systems) and DOVs (Diver Operated Video) methods, ensuring that the data is correctly cleaned and formatted for further analysis.
Examples
if (FALSE) { # \dontrun{
# Read all count files from the directory for BRUVs method
counts_data <- read_counts(dir = "path/to/directory", method = "BRUVs", recursive = TRUE)
# Read all count files from the directory for DOVs method
counts_data <- read_counts(dir = "path/to/directory", method = "DOVs", recursive = TRUE)
} # }