Back
I don't know about your data-set, so I will provide you the common solution.
In the below r programming code, the df is the data-frame on which I have imported my .csv data-set.
df$col[df$col == ">200000"] <- 200000
Or:
df$col <- replace(as.numeric(df$col), df$col == ">200000", "200000")
31k questions
32.8k answers
501 comments
693 users