使用 plotnine 保存高分辨率图像

Saving high-resolution images with plotnine

我正在尝试使用 plotnine 保存高分辨率的 png 图像。

使用测试数据集,这看起来像:

from plotnine import *
import pandas as pd
import numpy as np

df = pd.DataFrame()
df['x'] = np.arange(0,10,0.01)
df['y'] = np.sin(df['x'])

p = ggplot(df, aes(x='x',y='y')) + labs(x='x', y='y') + geom_point(size=0.1)
p.save(filename = 'test3.png', height=5, width=5, units = 'in', dpi=1000)

这会生成一个包含我的绘图的低分辨率 .png 文件,当我增加指定的 dpi 时,它没有得到改善。

我也试过用以下方式保存:

ggsave(plot=p, filename='test.png', dpi=1000)

并将 dpi=1000 替换为 res=1000。这会生成相同的低分辨率 png 文件。

如何以我想要的分辨率保存绘图?

编辑:此错误已在 plotnine 0.3.0 版中解决。上面的代码工作正常。

因为这个问题还没有得到解答,我也刚被引导到这里...

根据@has2k1(plotnine 的作者),这是一个错误,现在已解决。 This commit 看起来它可能是引用的修复程序。

要解决此问题,请确保您使用的是 git 版本或至少 version 0.3.0.

还有保存matplotlib图形的可能性

import plotnine as pn

fig, plot = (pn.ggplot()
 + ...

 + pn.theme(panel_background=pn.element_blank())
 + pn.theme(axis_title_y=pn.element_blank())
 + pn.theme(axis_ticks_major_y=pn.element_blank())
 + pn.theme(figure_size=(12, 8))
             ).draw(show=False, return_ggplot=True)

fig.savefig('image.png', dpi=300)

对我来说效果不错。