Shrikrishna commited on
Commit
0d9bf8e
·
1 Parent(s): 8734db7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -104,7 +104,7 @@ if st.button('Analyze'):
104
  df_predictions = pd.concat([df_test, df_predicted], axis=1)
105
 
106
  st.subheader("Original Stock Pice and Predicted Stock Price:")
107
- st.dataframe(df_predictions,use_container_width=True)
108
 
109
 
110
 
 
104
  df_predictions = pd.concat([df_test, df_predicted], axis=1)
105
 
106
  st.subheader("Original Stock Pice and Predicted Stock Price:")
107
+ st.dataframe(df_predictions.sort_index(ascending=False),use_container_width=True)
108
 
109
 
110