I\'m having an issue with attempting to save some plots with transparent ellipsoids on them if I attempt to save them with .ps/.eps extensions.
Here\'s the plot sav
You can rasterize the figure before saving it to preserve transparency in the eps file:
ax.set_rasterized(True) plt.savefig('rasterized_fig.eps')