GGplot 文档似乎表明您可以使用设备参数将图形保存为 jpg,但是当我尝试使用它时出现错误:异常,`
未知格式.jpg
def chart(dataframe, stock_name, title):
title = str(title)
name = str(stock_name)
graph_title = "TYD Chart for " + title
df = dataframe.set_index('date')
df = df[(df["stock_name"]==name)].ix['2016/01/01':'2016/02/09']
ggplot_obj = ggplot(df.reset_index(), aes('date','close')) + geom_line() + ggtitle(graph_title)
ggsave(filename="/Users/Joshua/Documents/stocks/" + title, device="jpg",plot = ggplot_obj, width = 10, height = 6)
print ("Saved File for " + str(title))
将文件保存为png
使用GGSAVE 上的教程