hi everyone!
some strings in a column have some characters i do not needed.
like apple(china), water (japan), cake(Britain).
i use function---
mutate_at("column name" , str_replace , "(china)" , "" )
but the outcome is apple()
how can i remove () ?
or do you have any better solution? and explain to me, please!