在图表中扩展matplotlib线图

时间:2016-02-17 21:41:08

标签: python matplotlib

我已经创建了这个情节,但由于某些原因它并没有在整个图中延伸。任何人都可以帮忙解释原因吗?

图表= enter image description here

代码=

fig, ax = plt.subplots()
ax.plot(trip.index, trip.gas, marker='.',linestyle='-')

plt.xticks(np.arange(min(trip.index), max(trip.index), 7))
ax.set_xticklabels(map(str, ax.get_xticks()/7))
plt.xlabel('Week #')
plt.ylabel('Trip Cost ($)')

1 个答案:

答案 0 :(得分:1)

Matplotlib往往在数据周围包含一些空间。如果您不想要,可以手动调整轴范围。这可以通过

完成
import platform
if platform.system() == "Windows":
    import msvcrt
    # do windows only stuff

if platform.system() == "Linux":
    # do some linux stuff