Attaching package: 'dplyr'
The following objects are masked from 'package:stats':
filter, lag
The following objects are masked from 'package:base':
intersect, setdiff, setequal, union
?gsub# removing dollar sign from string cc$Tenure.in.Months <-gsub(pattern ="\\$", replacement ="", x = cc$Tenure.in.Months )?as.numericcc$Tenure.in.Months <-as.numeric(cc$Tenure.in.Months)# View the structure of the combined dataset to confirm changesstr(combined)