Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -5
src/streamlit_app.py
CHANGED
|
@@ -2,10 +2,6 @@ import streamlit as st
|
|
| 2 |
import pandas as pd
|
| 3 |
import matplotlib.pyplot as plt
|
| 4 |
|
| 5 |
-
import os
|
| 6 |
-
st.write("Current folder:", os.getcwd())
|
| 7 |
-
st.write("Files here:", os.listdir())
|
| 8 |
-
st.write("Files above:", os.listdir(".."))
|
| 9 |
|
| 10 |
# ---------------------------------------------------
|
| 11 |
# PAGE CONFIG
|
|
@@ -21,7 +17,8 @@ st.set_page_config(
|
|
| 21 |
# LOAD DATA
|
| 22 |
# ---------------------------------------------------
|
| 23 |
|
| 24 |
-
df = pd.read_csv("housing_analysis_dataset-3.csv")
|
|
|
|
| 25 |
|
| 26 |
# ---------------------------------------------------
|
| 27 |
# MODEL COEFFICIENTS (from R)
|
|
|
|
| 2 |
import pandas as pd
|
| 3 |
import matplotlib.pyplot as plt
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
# ---------------------------------------------------
|
| 7 |
# PAGE CONFIG
|
|
|
|
| 17 |
# LOAD DATA
|
| 18 |
# ---------------------------------------------------
|
| 19 |
|
| 20 |
+
df = pd.read_csv("../data/housing_analysis_dataset-3.csv")
|
| 21 |
+
|
| 22 |
|
| 23 |
# ---------------------------------------------------
|
| 24 |
# MODEL COEFFICIENTS (from R)
|