如何使用熊猫python将预测值保存在与另一个列相同的csv文件中

时间:2019-01-31 09:21:46

标签: python-3.x pandas neural-network lstm

我设计了一个LSTM神经网络来预测该值。根据火车值显示的预测值。因此,我想将预测值放入csv文件中,然后将输入值导入到模型中。

我尝试了一个

pd.DataFrame(data=pred1, index=real_test, columns ['predictions']).to_csv('data25.csv')

但这给我一个错误 enter image description here

我的代码是:

pred1=fit1.predict(x_test)
pred1 = scaler_y.inverse_transform(np.array(pred1).reshape ((len(pred1), 1)))
real_test = scaler_y.inverse_transform(np.array(y_test).reshape ((len(y_test), 1))).astype(int)

我的csv文件 enter image description here

运行代码后,其显示如下: enter image description here

但是我想这样说, enter image description here

0 个答案:

没有答案