I am doing this in R I have column named "region" which consists of values as below:
region_24,
region_67,
region_30,
region_26,
region_29
I want to remove "region_" from this column.
Can you please help me with the coding using dplyr? using following:
- filter
- replace
- remove
- delete
- apply
What are the different various ways of doing this?