You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
230B

  1. fix_sboe_id_missing <- function(sboe_id, report_id) {
  2. idx_missing <- which(sboe_id == "No Id")
  3. if (!length(idx_missing)) {
  4. return(sboe_id)
  5. }
  6. sboe_id[idx_missing] <- paste0("NOID-", report_id[idx_missing])
  7. sboe_id
  8. }