-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix incorrect param name #9
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #9 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 5 5
Lines 187 187
=========================================
Hits 187 187 ☔ View full report in Codecov by Sentry. |
@@ -23,7 +23,7 @@ In general, there are four important statistics produced in sales ratio studies, | |||
| **COD** | 5 - 15 | How often properties with the *same* sale price receive the same predicted market value. Lower CODs indicate more fairness between similarly priced properties. | | |||
| **PRD** | .98 - 1.03 | How often properties with *different* sale prices receive the proportionately different predicted market values. Lower PRDs indicate more fairness between low and high-priced properties. | | |||
| **PRB** | -.05 - .05 | PRB is a different approach to measuring fairness across homes with different sale prices. | | |||
| **Median Ratio** | .095 - 1.05 | The median ratio measures whether the most common ratios accurately reflect sale prices. | | |||
| **Median Ratio** | .95 - 1.05 | The median ratio measures whether the most common ratios accurately reflect sale prices. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like it was a typo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me @wagnerlmichael!
@@ -23,7 +23,7 @@ In general, there are four important statistics produced in sales ratio studies, | |||
| **COD** | 5 - 15 | How often properties with the *same* sale price receive the same predicted market value. Lower CODs indicate more fairness between similarly priced properties. | | |||
| **PRD** | .98 - 1.03 | How often properties with *different* sale prices receive the proportionately different predicted market values. Lower PRDs indicate more fairness between low and high-priced properties. | | |||
| **PRB** | -.05 - .05 | PRB is a different approach to measuring fairness across homes with different sale prices. | | |||
| **Median Ratio** | .095 - 1.05 | The median ratio measures whether the most common ratios accurately reflect sale prices. | | |||
| **Median Ratio** | .95 - 1.05 | The median ratio measures whether the most common ratios accurately reflect sale prices. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch!
I believe the problem here is that we were referencing a parameter that doesn't exist. It works with
tax_year
.year
doesn't seem to exist in the json structure.Closes #7