我已导入 plotnine 并运行以下代码。
示例运行,但是当我运行如下图时,我会在边距中打印所有 x 和 y 值。其他人r
x = np.arange(-5.,5.,0.25,dtype=float)
gamma = 5.
y = gamma * x / (x ** 2 + gamma)
gg = pd.DataFrame()
gg['x'] = x
gg['y'] = y
p = ggplot(aes(x,y),gg) + geom_point()
p.save(filename = 'test3.png', height=5, width=5, units = 'cm')
p