savefig应使用什么格式的路径?

时间:2017-08-08 17:56:09

标签: python path seaborn

我使用
为我的项目创建了一个路径变量 proj_path = pathlib.Path('C:/users/data/lives/here')

我现在想将一个seaborn图保存为png,所以我为文件
创建了一个新的路径变量 plot_path = proj_path.joinpath('plot_name.png')

但是当我致电plot_name.savefig(plot_path)时,会返回
TypeError: Object does not appear to be a 8-bit string path or a Python file-like object

savefig接受哪种路径格式,如何转换plot_path?

1 个答案:

答案 0 :(得分:0)

您可能想要使用 plot_name.savefig(plot_path) 代替 plot_name.savefig('plot_path')(注意没有' -s)。