powered by
This function is taken from daattali/rsalad R package.
move_front(df, cols)
A data.frame.
A vector of column names to move to the front.
df <- data.frame(a = character(0), b = character(0), c = character(0), stringsAsFactors = TRUE) move_front(df, "b") move_front(df, c("c", "b"))
Run the code above in your browser using DataLab