APLpy/matplotlib: Coordinate grid alpha levels for EPS quality figure
问题 In the normal matplotlib axes class, it is possible to set gridlines to have a certain transparency (alpha level). I'm attempting to utilise this with the APLpy package using the following: fig = pyplot.figure(figsize=(18,8)) gridspec_layout = gridspec.GridSpec(1,2) gridspec_layout1 = gridspec.GridSpecFromSubplotSpec(3, 3, subplot_spec=gridspec_layout[1], hspace=0.0, wspace=0.0) pyplot_0 = fig.add_subplot(gridspec_layout1[0]) pyplot_1 = fig.add_subplot(gridspec_layout1[1]) pyplot_2 = fig.add