I have a column in dataframe df
with value 'name>year>format'
. Now I want to split this column by >
and add those values to new columns named as name
, year
, format
. How can I do this in R.
↧
Spliting string in column by seperator and adding those as new columns in the same data frame using R
↧