FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 3af380c1 authored by L. Bower's avatar L. Bower
Browse files

removing the X characters prepended ontp the dates in output csvs

parent e4d9745d
No related branches found
No related tags found
No related merge requests found
......@@ -627,7 +627,7 @@ class ProcessorEpidemiology(Processor):
# load the full epi results
df_full = read_csv(outfile,header=[0],index_col=[0,1])
column_date_fmt = f"X{config_epi['StartTimeShort']}_X%Y%m%d%H%M"
column_date_fmt = f"{config_epi['StartTimeShort']}_%Y%m%d%H%M"
df_full_dates = to_datetime(df_full.columns.astype('str'),format=column_date_fmt)
unit_description = ''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment