Pyplot中的空白图

时间:2016-10-02 07:30:02

标签: python matplotlib plot figure

我使用下面的功能,我得到窗口中显示的图,但保存的图是空白的。

import matplotlib.pyplot as plt
from sklearn.manifold import TSNE

def plot_embeddings(embeddings, names):
model = TSNE(n_components=2, random_state=0)
vectors = model.fit_transform(embeddings)
x, y = vectors[:, 0], vectors[:, 1]
fig, ax = plt.subplots()
ax.scatter(x, y)
for i, tname in enumerate(names):
    ax.annotate(tname, (x[i], y[i]))
plt.show()
plt.savefig('foo.png', bbox_inches='tight')

我还没有找到有效的解决方案。

1 个答案:

答案 0 :(得分:1)

savefig()

之前使用show()

show()打开窗口,等到你关闭它,也许当它关闭窗口时,它会清除图像。