因此,似乎无法执行以下操作(它会引发错误,因为axes
没有set_linewidth
方法):
axes_style = {'linewidth':5}
axes_rect = [0.1, 0.1, 0.9, 0.9]
axes(axes_rect, **axes_style)
并且必须使用以下旧技巧:
rcParams['axes.linewidth'] = 5 # set the value globally
... # some code
rcdefaults() # restore [global] defaults
是否有一种简单/干净的方式(可能是可以单独设置x
- 和y
- 轴参数等)?
如果不是,为什么?