Shrikrishna commited on
Commit
8e8baed
·
1 Parent(s): d01e4bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -99,12 +99,11 @@ if st.button('Analyze'):
99
 
100
  #Call the function to plot the final graph
101
  plot_final_graph()
 
102
 
103
- st.subheader("Original Stock Pice:")
104
- st.dataframe(y_test,use_container_width=True)
105
 
106
- st.subheader("Predicted Stock Pice:")
107
- st.dataframe(y_predicted,use_container_width=True)
108
 
109
 
110
  if __name__ == "__main__":
 
99
 
100
  #Call the function to plot the final graph
101
  plot_final_graph()
102
+
103
 
104
+ st.subheader("Original Stock Pice and Predicted Stock Price:")
105
+ st.dataframe(pd.concat([y_test, y_predicted]),use_container_width=True)
106
 
 
 
107
 
108
 
109
  if __name__ == "__main__":