Spaces:
Runtime error
Runtime error
Update W3-assignment-streamlit.py
Browse files
W3-assignment-streamlit.py
CHANGED
|
@@ -58,7 +58,7 @@ region_filter_on = st.sidebar.checkbox("Filter by region ", value=False)
|
|
| 58 |
|
| 59 |
# Data loading & preprocessing
|
| 60 |
@st.cache_data(show_spinner=True)
|
| 61 |
-
def load_data(
|
| 62 |
df = pd.read_csv(path, low_memory=False)
|
| 63 |
return df
|
| 64 |
|
|
|
|
| 58 |
|
| 59 |
# Data loading & preprocessing
|
| 60 |
@st.cache_data(show_spinner=True)
|
| 61 |
+
def load_data():
|
| 62 |
df = pd.read_csv(path, low_memory=False)
|
| 63 |
return df
|
| 64 |
|