我有一个来自matplotlib的hexbin可视化文件。该代码有效。但是,我希望获得科学概念值中的x和y轴。这是我原始可视化的代码。我还附加了可视化效果。帮助将不胜感激如何做到这一点!预先感谢
# Plotting a Hexabin comparing mileage and price
plt.hexbin(x = carmax_data['mileage'], y = carmax_data['price'], gridsize=(16, 11))
plt.xlabel('Average Mileage Count')
plt.ylabel('Average Prices of Cars')
plt.title("Relationship between mileage and price")
plt.colorbar()