1
import pylab
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker

pyplotParams = {
    'backend': 'eps',
    'axes.labelsize': 8,
    'axes.facecolor': '#E5E5E5',  # axes background color
    'axes.edgecolor': 'k',        # axes edge  color
    'axes.grid': True,            # display grid or not
    'axes.axisbelow': True,       # show grid below plot elements
    'grid.color': 'w',            # grid color
    'grid.linestyle': '-',        # grid line style
    'figure.dpi': 80,
    'figure.facecolor': 'w',
 }

 rcParams.update(pyplotParams) 
 fig1 = plt.figure()
 ax4 = fig1.add_subplot(111)
 ax4.plot(xaxis3_val,cum_ar_250_ret,color='g')
 ax4.plot(xaxis3_val,cum_basket_250_ret,color='b')
 ax5 = ax4.twinx()
 ax5.plot(xaxis3_val,signal,color='r')
 plt.show()

在上面的示例中是一组 4 个图的缩减版本,我想要所有四个图上的网格线。但是在图 4 中,我只希望 ax4 而不是 ax5 的网格线。Axes 对象 (ax5) 似乎没有一种简单的方法来设置要关闭的网格打印。如何有选择地关闭 ax5 的网格线?我尝试了以下方法,但它不起作用:

(Pdb) ax5.get_xgridlines()
<a list of 6 Line2D xgridline objects>
(Pdb) ax5.grid(ls=None)
*** AttributeError: 'NoneType' object has no attribute 'startswith'
(Pdb)
4

1 回答 1

3

我想你只需要关闭电网。(文档

ax5.grid(False)
于 2013-01-14T21:56:41.603 回答