I have a dataset from that website; Valorant Leaderboard Statistics | Kaggle . And I have a problem.
I have a dataset which includes numeric values but because of the some values has comma separtor for thousands ( “1,200”) it shows as a character variable. When we try to solve this problem with that code: deaths_num ← as.numeric(gsub(“,”,“”,nim$deaths,fixed=TRUE))
But, it delete some our values and we need that values ( for example we have 1,472 before the code, after we run the code it delete and shows NA instead of 1472). How can we solve it? Can you help me?