我正在尝试使用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
如何使用plotly.iplot来获得与图像相同的结果?