mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-07-25 07:10:16 -07:00
Issue 1044: Add low HS education fields to tiles and download (#1046)
This commit is contained in:
parent
000da0f3ac
commit
0d10534725
9 changed files with 34 additions and 19 deletions
|
@ -107,11 +107,13 @@
|
|||
"# Remove the suffix \"_1\"\n",
|
||||
"duplicate_columns = [x[:-2] for x in merged_df.columns if \"_1\" in x]\n",
|
||||
"\n",
|
||||
"columns_to_exclude_from_duplicates_check = [\n",
|
||||
" \"Total threshold criteria exceeded\"\n",
|
||||
"]\n",
|
||||
"columns_to_exclude_from_duplicates_check = [\"Total threshold criteria exceeded\"]\n",
|
||||
"\n",
|
||||
"columns_to_check = [column for column in duplicate_columns if column not in columns_to_exclude_from_duplicates_check]\n",
|
||||
"columns_to_check = [\n",
|
||||
" column\n",
|
||||
" for column in duplicate_columns\n",
|
||||
" if column not in columns_to_exclude_from_duplicates_check\n",
|
||||
"]\n",
|
||||
"\n",
|
||||
"any_errors_found = False\n",
|
||||
"for column_to_check in columns_to_check:\n",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue