Converting text in Matplotlib when exporting .eps files
问题 I'd like to be able to save Matplotlib plots and add them directly as vector graphics in Microsoft Word documents. However, the only format supported by Word and Matplotlib both is .eps, and the axis text is completely missing in Word if I try. I'll show you: Here's a minimal working example script: import matplotlib.pyplot as plt import numpy as np axes = plt.gca() data = np.random.random((2, 100)) axes.plot(data[0, :], data[1, :]) Here's the image I get if I save the plot as .png using the