Shrikrishna commited on
Commit
a359c5e
·
1 Parent(s): f2de731

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -100,7 +100,7 @@ if st.button('Analyze'):
100
  #Call the function to plot the final graph
101
  plot_final_graph()
102
 
103
- df_predictions = pd.DataFrame([y_test, y_predicted], columns = ['Original Price','Predicted Price'])
104
 
105
  st.subheader("Original Stock Pice and Predicted Stock Price:")
106
  st.dataframe(df_predictions,use_container_width=True)
 
100
  #Call the function to plot the final graph
101
  plot_final_graph()
102
 
103
+ df_predictions = pd.DataFrame({'Original_Price': y_test, 'Predicted_Price': y_predicted}, columns=['Original_Price', 'Predicted_Price'])
104
 
105
  st.subheader("Original Stock Pice and Predicted Stock Price:")
106
  st.dataframe(df_predictions,use_container_width=True)