ScottScroggins commited on
Commit
d64b73e
·
verified ·
1 Parent(s): c3b38f1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,8 +15,8 @@ pn.extension('ipywidgets')
15
 
16
  @pn.cache # Add caching to only download data once
17
  def get_data():
18
- df = pd.read_excel('fbc_data_2024.xlsx', sheet_name='County', header=1)
19
- #df = pd.read_excel('https://files.epi.org/uploads/fbc_data_2024.xlsx', sheet_name='County', header=1)
20
 
21
  #Drop unneeded columns
22
  col_to_drop = list(df.columns[:1]) + list(df.columns[13:21])
 
15
 
16
  @pn.cache # Add caching to only download data once
17
  def get_data():
18
+ #df = pd.read_excel('fbc_data_2024.xlsx', sheet_name='County', header=1)
19
+ df = pd.read_excel('https://files.epi.org/uploads/fbc_data_2024.xlsx', sheet_name='County', header=1)
20
 
21
  #Drop unneeded columns
22
  col_to_drop = list(df.columns[:1]) + list(df.columns[13:21])