Answers for "splitting column in r string"

R
2

r split string column by delimiter

#Seperating a name column into first and last name. 
seperate(table_name, full_name,into=c("first_name", "last_name"), sep = " ")
#sep is the delimiter to seperate by, in this case a space.
Posted by: Guest on September-25-2021
2

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

Browse Popular Code Answers by Language