azavea / pfb-network-connectivity

PFB Bicycle Network Connectivity
Other
40 stars 10 forks source link

Adjust score weights when there's no jobs data #914

Closed KlaasH closed 1 year ago

KlaasH commented 1 year ago

Overview

Rebecca reported that the combined scores were getting thrown off for analysis runs with no jobs data, because the zero was getting averaged in rather than skipped.

This adjust the combined scores that the employment score feeds into--the opportunity score, which is a weighted average of employment and education-related scores, and the overall score--to avoid averaging in a zero when we haven't calculated an employment score. The opportunity score also needed divide-by-zero protection after this change, since it makes it possible for all of the components that go into the opportunity score to be absent.

Demo

Here's a comparison of three different versions of the same neighborhood (Tiny Brussels). The one on the left is with no jobs and without this fix, the middle one is with no jobs and with this fix, and the one on the right is with jobs data. image

Testing Instructions

Run an analysis (a small one, to save time) with and without the "Omit jobs data in analysis" option and confirm that the "Opportunity total" and the overall score are both affected by the change and seem reasonable. It's a little hard to know exactly what the values should be, since they're weighted averages and the weights are buried in the analysis code, but the opportunity score should be somewhere in the range between the scores in that section that aren't showing "no data", and the overall score should move up or down depending on whether the employment score increases or decreases the opportunity score.

Checklist