如何在matplotlib hexbin热图中获得科学概念值

时间:2018-09-21 20:38:19

标签: python matplotlib data-visualization scientific-notation

我有一个来自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()

仅提供其他信息: carmax_data是一个数据框。 enter image description here

0 个答案:

没有答案