We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9b9842 commit 2251198Copy full SHA for 2251198
src/acquisition/rvdss/utils.py
@@ -98,7 +98,7 @@ def preprocess_table_columns(table):
98
99
table.columns = [re.sub(r"^at\b","atl ",t) for t in table.columns]
100
table.columns = [re.sub("canada","can",t) for t in table.columns]
101
- table.columns = [re.sub("^cb$","bc",t) for t in table.columns]
+ table.columns = [re.sub(r"\bcb\b","bc",t) for t in table.columns]
102
103
table.columns =[re.sub(r"h1n1 2009 |h1n12009|a_h1|ah1\b", "ah1n1pdm09", s)for s in table.columns]
104
table.columns =[re.sub(r"a_uns", "auns", s)for s in table.columns]
0 commit comments