可视化我的matplotlib输出

时间:2016-08-13 04:01:38

标签: matplotlib

我运行了几个代码并获得了

Draw = pf.plot_drawdown_periods(returns, top=5).set_xlabel('Date')
type(Draw)
<matplotlib.text.Text at 0x7fb063733f90>

如何以不同的方式显示我的结果?

1 个答案:

答案 0 :(得分:0)

您需要明确调用pyplot.show()来显示图形。

import matplotlib.pyplot as plt
pf.plot_drawdown_periods(returns, top=5).set_xlabel('Date')
plt.show()