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 阅读次数:104
dataframe改为自己的Dataframe即可
fig = sns.lineplot(x=dataframe.index, y=dataframe['value'],)
然后使用:
scatter_fig = fig.get_figure()
scatter_fig.savefig(fig_path, dpi = 400)
文章
24092
阅读量
2859722