dataframe改为自己的Dataframe即可
fig = sns.lineplot(x=dataframe.index, y=dataframe['value'],)
然后使用:
scatter_fig = fig.get_figure()
scatter_fig.savefig(fig_path, dpi = 400)
2023-04-19 09:26:38 阅读次数:113
dataframe改为自己的Dataframe即可
fig = sns.lineplot(x=dataframe.index, y=dataframe['value'],)
然后使用:
scatter_fig = fig.get_figure()
scatter_fig.savefig(fig_path, dpi = 400)
文章
28587
阅读量
3772040