I have a dataset containing values like this:
list <- c("?stanbul", "Ba?ak?ehir")
What I would like to do now is to replace these values with a space ("").
So therefore I do
list <- gsub("?", "", list)
But this gives me this output:
> list
[1] "?stanbul" "Ba?ak?ehir"
Any thoughts how I can tackle this?