Skip to content

Commit

Permalink
Update hubverse datatable creation to work with new state_pop_df
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanhmorris committed Feb 5, 2025
1 parent b2b636f commit daac312
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipelines/hubverse_create_observed_data_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def save_observed_data_tables(
first_training_date=datetime.date(2023, 1, 1),
state_pop_df=state_pop,
),
["US"] + [x for x in state_pop["abb"]],
state_pop.get_column("abb").to_list(),
)
).filter(pl.col("disease") == disease)
for disease in ["COVID-19", "Influenza", "RSV", "Total"]
Expand Down

0 comments on commit daac312

Please sign in to comment.