Update app.py
Browse files
app.py
CHANGED
@@ -303,8 +303,10 @@ def main():
|
|
303 |
|
304 |
if app_mode == "Test Model":
|
305 |
test_model()
|
306 |
-
|
307 |
predict_stock_prices()
|
|
|
|
|
308 |
|
309 |
def test_model():
|
310 |
st.header("Test Enhanced Prophet Model")
|
|
|
303 |
|
304 |
if app_mode == "Test Model":
|
305 |
test_model()
|
306 |
+
elif app_mode == "Predict Stock Prices":
|
307 |
predict_stock_prices()
|
308 |
+
elif app_mode == "Explore Data":
|
309 |
+
explore_data()
|
310 |
|
311 |
def test_model():
|
312 |
st.header("Test Enhanced Prophet Model")
|