Update app.py
Browse files
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 |
-
|
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])
|