Python 如何使曲面(使用EpiPy)显示为图形?

Python 如何使曲面(使用EpiPy)显示为图形?,python,pandas,graph,Python,Pandas,Graph,我在关注这个, 我使用升华文本运行脚本,但没有显示预期的图形。您尝试过fig.show()?哦,谢谢,我尝试过fig.show()和plt.show(),两种方法都有效。 import epipy import pandas as pd # mers_df is a pandas data frame that contains "dates" as a date column curve, fig, ax = epipy.epicurve_plot(mers_df, date_col='da

我在关注这个,

我使用升华文本运行脚本,但没有显示预期的图形。

您尝试过
fig.show()
?哦,谢谢,我尝试过fig.show()和plt.show(),两种方法都有效。
import epipy
import pandas as pd

# mers_df is a pandas data frame that contains "dates" as a date column
curve, fig, ax = epipy.epicurve_plot(mers_df, date_col='dates', freq='month')