我正在尝试使用Plotly对Apple过去一年的收益进行分配。
import plotly.figure_factory as ff
hist_data = [df['Return'][1:]]
group_labels = ['Apple Return distplot']
fig = ff.create_distplot(hist_data, group_labels, bin_size=.1)
fig.show()
我收到以下错误消息:
AttributeError:'Figure'对象没有属性'show'
如何解决以上问题?
答案 0 :(得分:0)
如果看到此错误,则说明您使用的plotly
版本低于4.x,需要进行升级。我建议升级到最新版本4.1.1
答案 1 :(得分:0)
这对我有用
!pip install plotly==4.1.1
from plotly import graph_objs as go