Skip to contents

This function generates HTML QAQC reports for specified freshwater creel fisheries and saves them to a specified directory. By default, the reports are saved to a directory called "CreelDataQAQC_reports" in the current working directory.

Usage

generate_report(fishery_names, output_dir = NULL)

Arguments

fishery_names

A character vector of freshwater creel fishery names.

output_dir

A character string specifying the directory to save the reports.

Value

HTML QAQC report for each fishery

Examples

if (FALSE) { # \dontrun{
# Default usage: saves report to current working directory
generate_report(c("Fishery A", "Fishery B"))

# Custom output directory
generate_report(c("Fishery A", "Fishery B"), output_dir = "path/to/output")
} # }