mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-07 18:14:18 -07:00
Issue 105: Configure and run black
and other pre-commit hooks (clean branch) (#1962)
* Configure and run `black` and other pre-commit hooks Co-authored-by: matt bowen <matthew.r.bowen@omb.eop.gov>
This commit is contained in:
parent
baa34ec038
commit
6e6223cd5e
162 changed files with 716 additions and 602 deletions
|
@ -13,7 +13,7 @@
|
|||
"import geopandas as gpd\n",
|
||||
"\n",
|
||||
"# Read in the above json file\n",
|
||||
"nation=gpd.read_file(\"/Users/vims/Downloads/usa-high-1822-637b.json\")"
|
||||
"nation = gpd.read_file(\"/Users/vims/Downloads/usa-high-1822-637b.json\")"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -45,7 +45,7 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"nation['FUDS_RAW']"
|
||||
"nation[\"FUDS_RAW\"]"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -248,7 +248,18 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"nation_new_ind = nation[['GEOID10', 'SF', 'CF', 'HRS_ET', 'AML_ET', 'AML_RAW','FUDS_ET', 'FUDS_RAW']]\n",
|
||||
"nation_new_ind = nation[\n",
|
||||
" [\n",
|
||||
" \"GEOID10\",\n",
|
||||
" \"SF\",\n",
|
||||
" \"CF\",\n",
|
||||
" \"HRS_ET\",\n",
|
||||
" \"AML_ET\",\n",
|
||||
" \"AML_RAW\",\n",
|
||||
" \"FUDS_ET\",\n",
|
||||
" \"FUDS_RAW\",\n",
|
||||
" ]\n",
|
||||
"]\n",
|
||||
"nation_new_ind"
|
||||
]
|
||||
},
|
||||
|
@ -270,7 +281,7 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"nation_new_ind['HRS_ET'].unique()"
|
||||
"nation_new_ind[\"HRS_ET\"].unique()"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -293,7 +304,7 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"nation_new_ind['HRS_ET'].value_counts()"
|
||||
"nation_new_ind[\"HRS_ET\"].value_counts()"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -314,7 +325,7 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"nation_new_ind['AML_ET'].unique()"
|
||||
"nation_new_ind[\"AML_ET\"].unique()"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -337,7 +348,7 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"nation_new_ind['AML_ET'].value_counts()"
|
||||
"nation_new_ind[\"AML_ET\"].value_counts()"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -358,7 +369,7 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"nation_new_ind['AML_RAW'].unique()"
|
||||
"nation_new_ind[\"AML_RAW\"].unique()"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -380,7 +391,7 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"nation_new_ind['AML_RAW'].value_counts()"
|
||||
"nation_new_ind[\"AML_RAW\"].value_counts()"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -401,7 +412,7 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"nation_new_ind['FUDS_ET'].unique()"
|
||||
"nation_new_ind[\"FUDS_ET\"].unique()"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -424,7 +435,7 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"nation_new_ind['FUDS_ET'].value_counts()"
|
||||
"nation_new_ind[\"FUDS_ET\"].value_counts()"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -445,7 +456,7 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"nation_new_ind['FUDS_RAW'].unique()"
|
||||
"nation_new_ind[\"FUDS_RAW\"].unique()"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -468,7 +479,7 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"nation_new_ind['FUDS_RAW'].value_counts()"
|
||||
"nation_new_ind[\"FUDS_RAW\"].value_counts()"
|
||||
]
|
||||
}
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue