R/privat-rename_phase_duplicates.R

Defines functions rownames_to_first_column rename_phase_duplicates

rename_phase_duplicates <- function(phase) {
  ph_str <- rle(as.character(phase))
  ts <- table(ph_str$values)
  new_phase <- ph_str$values
  for(i in 1:length(ts)) {
    if (ts[i] > 1) {
      new_phase[which(ph_str$values == names(ts[i]))] <- 
        paste0(names(ts[i]), "(", 1:ts[i], ")")
    }
  }
  new_phase <- mapply(
    function(x,y) rep(x, y), 
    new_phase, ph_str$lengths, 
    SIMPLIFY = FALSE, USE.NAMES = FALSE
  ) |> unlist()
  as.factor(new_phase)
}

rownames_to_first_column <- function(x, name = "Rownames") {
  x <- cbind(.rownames = rownames(x), x)
  rownames(x) <- NULL
  names(x)[1] <- name
  x
}
jazznbass/scan_develop documentation built on July 3, 2025, 6:15 p.m.