Adds one or more QC entries to a QC log.
Arguments
- qc_log
Tibble. Existing QC log (from
create_qc_log()).- entries
Data frame. New entries with the same columns as
qc_log.- output_csv
Character. Optional path to save updated log.
Examples
if (FALSE) { # \dontrun{
qc <- create_qc_log()
entry <- tibble::tibble(
pat_id = "SCI001", session = "ses-01", rater = "RH",
date = Sys.Date(), seg_type = "sc", quality = "good", notes = ""
)
qc <- update_qc_log(qc, entry)
} # }