matplotlib报错问题

目录

错误1:

错误2:

  错误3:​


错误1:

TypeError: text() missing 1 required positional argument: 's'

原代码: 

matplotlib报错问题_第1张图片

 错因在于,我的函数里面少了一个参数.

matplotlib报错问题_第2张图片

错误2:

TypeError: 'AxesSubplot' object is not subscriptable

matplotlib报错问题_第3张图片

分析:在创建区域的时候,创建的是一行两列的,然后在画图的时候选择区域的索引只用确定列就可以了,不用确定行索引。改成下面这样就OK了

matplotlib报错问题_第4张图片

 

  错误3:matplotlib报错问题_第5张图片

当我把划线的地方改了一下后,代码就运行成功了

原因在于,在绘制图形的时候,设置bottom数值牵扯计算,因此要将数据转为numpy数组

matplotlib报错问题_第6张图片

你可能感兴趣的:(matplotlib,matplotlib)