I have column name "tourney_name" and one of the values of the column has the incorrect name. It is named Us Open instead of US Open. How do I change this? Below shows the unique names of the Grand Slams in tennis on the data set. I don't want to rename the column name, but how to revalue this? Also, this is my first question, so I'm sorry if I made some mistake.
Atp_together_68_21 %>%
filter(round == "F", tourney_level == "G") %>%
select(tourney_name) %>%
unique()
tourney_name
1 Roland Garros
2 Wimbledon
3 US Open
4 Australian Open
210 Us Open