I'm trying to make a point plot of a data frame but all the values on the x axis are shown and is impossible to read. How can I scale the x axis in order for it to just show ticks instead of all the values? here's my code:
plt.figure(figsize=(12,5))
sns.pointplot(data=who_air_gdp, x='gdp_md_est', y='PM10 (μg/m3)', hue='World Bank ranking of income 2019')
plt.title('PM10 per GDP')
sns.despine()
plt.tight_layout()
plt.xlabel('GDP')
plt.ylabel('PM10 (μg/m3)')
plt.show()