标签: python pandas matplotlib plot
我想知道如何在matplotlib python pandas中改变线图中的箱数? 就像我的x轴范围是[0,1000],我希望它决定200个刻度。有人可以帮忙吗?
答案 0 :(得分:2)
使用set_ticks函数
from matplotlib import pyplot as plt fig, ax = plt.subplots() ax.set_xticks([0,200,400,800,1000])