R/print_names.R
print_names.Rd
Prints the names of a data frame in a column so they're easy to copy.
print_names(df)
A data frame.
df <- data.frame( one = c(1, 2), two = c(3, 4), three = c(5, 6) ) print_names(df) #> one #> two #> three