I am having trouble figuring out how to change the ticks of my y-axis. For example the highest tick says 1.75 when it should say 17.5.
sns.barplot(data = tn_movie_budgets_df, x = 'release_date', y = 'worldwide_gross', order=['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'])
plt.xlabel('Month of Release')
plt.ylabel('Total Worldwide Gross in billions')
plt.title('Total Worldwide Gross VS release Month')