ralate2 commited on
Commit
140971e
·
verified ·
1 Parent(s): b7feb2b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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('Nuisance_Complaints_20241204.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'])