Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -2
src/streamlit_app.py
CHANGED
|
@@ -6,8 +6,8 @@ import altair as alt
|
|
| 6 |
# 1️⃣ 데이터 불러오기
|
| 7 |
# ===============================
|
| 8 |
|
| 9 |
-
past_path = '/src/2018-2024.xlsx'
|
| 10 |
-
future_path = '/src/예상수요량_2025예측.xlsx'
|
| 11 |
|
| 12 |
past_df = pd.read_excel(past_path)
|
| 13 |
future_df = pd.read_excel(future_path)
|
|
|
|
| 6 |
# 1️⃣ 데이터 불러오기
|
| 7 |
# ===============================
|
| 8 |
|
| 9 |
+
past_path = '/app/src/2018-2024.xlsx'
|
| 10 |
+
future_path = '/app/src/예상수요량_2025예측.xlsx'
|
| 11 |
|
| 12 |
past_df = pd.read_excel(past_path)
|
| 13 |
future_df = pd.read_excel(future_path)
|