using this command:
pd.to_numeric(
df_rental['by_day'].str.replace('$', ''), errors='coerce')
Some values in the select column are turning nan using the above command with or without `.str.replace('$', '')
How should I change '-' to zero and basically change the displayed columns from object to numeric.
