Spaces:
Runtime error
Runtime error
Commit
·
a359c5e
1
Parent(s):
f2de731
Update app.py
Browse files
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(
|
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)
|