We removed the commas in the numbers and changed the data types from character to numeric for the following columns: LinkedIn, Indeed, SimplyHired and Monster.
data_skills$LinkedIn <- str_replace_all(data_skills$LinkedIn, ",", "") %>% as.numeric()
data_skills$Indeed <- str_replace_all(data_skills$Indeed, ",", "") %>% as.numeric()
data_skills$SimplyHired <- str_replace_all(data_skills$SimplyHired, ",", "") %>% as.numeric()
data_skills$Monster <- str_replace_all(data_skills$Monster, ",", "") %>% as.numeric()
str(data_skills)
## 'data.frame': 30 obs. of 5 variables:
## $ Keyword : chr "machine learning" "analysis" "statistics" "computer science" ...
## $ LinkedIn : num 5701 5168 4893 4517 3404 ...
## $ Indeed : num 3439 3500 2992 2739 2344 ...
## $ SimplyHired: num 2561 2668 2308 2093 1791 ...
## $ Monster : num 2340 3306 2399 1900 2053 ...