Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -29,7 +29,7 @@ This dashboard analyzes nuisance complaints data from the City of Urbana. The vi
|
|
| 29 |
# Load and clean data
|
| 30 |
@st.cache_data
|
| 31 |
def load_and_clean_data():
|
| 32 |
-
data = pd.read_csv('
|
| 33 |
data = data.dropna(subset=['File Number'])
|
| 34 |
data['Date Reported'] = pd.to_datetime(data['Date Reported'])
|
| 35 |
data['Date Notice Mailed or Given'] = pd.to_datetime(data['Date Notice Mailed or Given'])
|
|
|
|
| 29 |
# Load and clean data
|
| 30 |
@st.cache_data
|
| 31 |
def load_and_clean_data():
|
| 32 |
+
data = pd.read_csv('Nuisance_Complaints_20241130.csv')
|
| 33 |
data = data.dropna(subset=['File Number'])
|
| 34 |
data['Date Reported'] = pd.to_datetime(data['Date Reported'])
|
| 35 |
data['Date Notice Mailed or Given'] = pd.to_datetime(data['Date Notice Mailed or Given'])
|