使用plotly绘制同一图中的不同数据框

时间:2019-07-08 18:28:24

标签: python pandas plotly

我正在尝试使用plotly绘制交互式图形-包含3个不同的数据框

在运行模型并获得结果后,我使用LSTM模型尝试预测股价,我有3个不同的数据框:

df_close #real price

train_predictions # 70% predict on train data - rest is nan

test_predictions # 70% is nan - rest is test prediction

#plotting with matplotlib.pyplot will be :

plt.plot(df_close)
plt.plot(train_predictions)
plt.plot(test_predictions)
plt.show()

#this will give me one plot - with 3 different df marks

enter image description here

如何使用plotly.iplot来获得与图像相同的结果?

0 个答案:

没有答案