Answers for "separate column by character columns r"

R
1

how to split a column in r

library(tidyverse)
df <- df %>% separate(old_col_name, c('new_col_1','new_col_2'), extra='drop')
Posted by: Guest on April-08-2021

Code answers related to "separate column by character columns r"

Browse Popular Code Answers by Language