根据错误消息提示尝试了几个迭代版本,以使用像素或英寸方法将 ggplot 保存到文件:
ggsave(filename="nlrundiff.jpg", width=4, height=4, units='in', plot=plt)
两种情况都没有成功,产生的错误信息摘录如下:
/usr/local/lib/python2.7/dist-packages/ggplot/utils/ggutils.pyc in ggsave(filename, plot, device, format, path, scale, width, height, units, dpi, limitsize, **kwargs)
118 from_inch = {"in":lambda x:x,"cm":lambda x: x * 2.54, "mm":lambda x: x * 2.54 * 10}
119
--> 120 w, h = figure.get_size_inches()
121 issue_size = False
122 if width is None:
AttributeError: 'NoneType' object has no attribute 'get_size_inches'
这是我的输入语法错误还是 Python ggplot 错误?
谢谢。