1.4.2.7 移动脊柱

提示:文档

脊柱是连接坐标轴刻度标记的线,记录了数据范围的边界。他们可以被放在任意的位置,到目前位置,他们被放在了坐标轴的四周。我们将改变他们,因为我们希望他们在中间。因为有四条(上下左右),我们通过设置颜色为None舍弃了顶部和右侧,并且我们将把底部和左侧的脊柱移动到数据空间坐标的零点。

  1. ax = pl.gca() # gca stands for 'get current axis'
  2. ax.spines['right'].set_color('none')
  3. ax.spines['top'].set_color('none')
  4. ax.xaxis.set_ticks_position('bottom')
  5. ax.spines['bottom'].set_position(('data',0))
  6. ax.yaxis.set_ticks_position('left')
  7. ax.spines['left'].set_position(('data',0))

plot_exercice_7_1.png