From 0873d79254798522ce4be56d27fc1d36c9d9f9ab Mon Sep 17 00:00:00 2001 From: Saran Ahluwalia Date: Thu, 2 Dec 2021 16:43:22 -0500 Subject: [PATCH] change threshold for workforce factor (#950) Co-authored-by: Saran Ahluwalia --- data/data-pipeline/data_pipeline/score/score_l.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/data-pipeline/data_pipeline/score/score_l.py b/data/data-pipeline/data_pipeline/score/score_l.py index 5b089efa..a9477f8d 100644 --- a/data/data-pipeline/data_pipeline/score/score_l.py +++ b/data/data-pipeline/data_pipeline/score/score_l.py @@ -336,5 +336,5 @@ class ScoreL(Score): ) ) return ( - self.df[field_names.HIGH_SCHOOL_ED_FIELD] > 0.05 + self.df[field_names.HIGH_SCHOOL_ED_FIELD] > 0.10 ) & workforce_criteria