Hi @cook675,
Is it a variable or truly a rowname? It is a variable, depending on the name of the variable, try this:
library(tidyverse)
data <- tibble(x = c("_ABC", "_DEF", "_GHI"))
data %>%
mutate(x = str_replace(x, "_", ""))
I can be more helpful if you show the actual structure of the data.