Spaces:
Sleeping
Sleeping
Commit
·
5c79d20
1
Parent(s):
0d9bf8e
Update app.py
Browse files
app.py
CHANGED
@@ -103,7 +103,7 @@ if st.button('Analyze'):
|
|
103 |
df_predicted = pd.DataFrame(y_predicted, columns=['Predicted_Price'])
|
104 |
df_predictions = pd.concat([df_test, df_predicted], axis=1)
|
105 |
|
106 |
-
st.subheader("Original
|
107 |
st.dataframe(df_predictions.sort_index(ascending=False),use_container_width=True)
|
108 |
|
109 |
|
|
|
103 |
df_predicted = pd.DataFrame(y_predicted, columns=['Predicted_Price'])
|
104 |
df_predictions = pd.concat([df_test, df_predicted], axis=1)
|
105 |
|
106 |
+
st.subheader("Original and Predicted Stock Price:")
|
107 |
st.dataframe(df_predictions.sort_index(ascending=False),use_container_width=True)
|
108 |
|
109 |
|