mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 01:54:18 -08:00
Add back income percentile (#1977)
* Add missing field to download (#1964) * Remove pydantic since it's unused (#1964) * Add percentile to CSV (#1964) * Update downloadable pickle (#1964)
This commit is contained in:
parent
71385a033a
commit
1334fcc274
5 changed files with 7 additions and 18 deletions
|
@ -68,6 +68,9 @@ fields:
|
|||
- score_name: Total population
|
||||
label: Total population
|
||||
format: float
|
||||
- score_name: Percent of individuals below 200% Federal Poverty Line, imputed and adjusted (percentile)
|
||||
label: Adjusted percent of individuals below 200% Federal Poverty Line (percentile)
|
||||
format: float
|
||||
- score_name: Percent of individuals below 200% Federal Poverty Line, imputed and adjusted
|
||||
label: Adjusted percent of individuals below 200% Federal Poverty Line
|
||||
format: float
|
||||
|
|
|
@ -72,6 +72,9 @@ sheets:
|
|||
- score_name: Total population
|
||||
label: Total population
|
||||
format: float
|
||||
- score_name: Percent of individuals below 200% Federal Poverty Line, imputed and adjusted (percentile)
|
||||
label: Adjusted percent of individuals below 200% Federal Poverty Line (percentile)
|
||||
format: float
|
||||
- score_name: Percent of individuals below 200% Federal Poverty Line, imputed and adjusted
|
||||
label: Adjusted percent of individuals below 200% Federal Poverty Line
|
||||
format: float
|
||||
|
|
Binary file not shown.
18
data/data-pipeline/poetry.lock
generated
18
data/data-pipeline/poetry.lock
generated
|
@ -1537,21 +1537,6 @@ category = "main"
|
|||
optional = false
|
||||
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
||||
|
||||
[[package]]
|
||||
name = "pydantic"
|
||||
version = "1.10.2"
|
||||
description = "Data validation and settings management using python type hints"
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = ">=3.6.1"
|
||||
|
||||
[package.dependencies]
|
||||
typing-extensions = ">=3.7.4.3"
|
||||
|
||||
[package.extras]
|
||||
dotenv = ["python-dotenv (>=0.10.4)"]
|
||||
email = ["email-validator (>=1.0.3)"]
|
||||
|
||||
[[package]]
|
||||
name = "pyflakes"
|
||||
version = "2.3.1"
|
||||
|
@ -2207,7 +2192,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-
|
|||
[metadata]
|
||||
lock-version = "1.1"
|
||||
python-versions = "^3.8"
|
||||
content-hash = "f3d61a8c4ca54c580ba8d459aa76a9d956e046c2b8339602497ce53393ba9983"
|
||||
content-hash = "5d55ed06ec57aa8b2fe957ff8a5cfd557f310f8fe65377ffd2d5ec3545f2ec82"
|
||||
|
||||
[metadata.files]
|
||||
ansiwrap = []
|
||||
|
@ -2562,7 +2547,6 @@ pycparser = [
|
|||
{file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
|
||||
{file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
|
||||
]
|
||||
pydantic = []
|
||||
pyflakes = []
|
||||
pygments = []
|
||||
pylint = []
|
||||
|
|
|
@ -39,7 +39,6 @@ tqdm = "4.62.0"
|
|||
types-requests = "^2.25.0"
|
||||
us = "^2.0.2"
|
||||
xlsxwriter = "^2.0.0"
|
||||
pydantic = "^1.9.0"
|
||||
Rtree = "^1.0.0"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
|
|
Loading…
Add table
Reference in a new issue