-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add price breakdowns by strata to condo pipeline report #78
base: 2025-assessment-year
Are you sure you want to change the base?
Add price breakdowns by strata to condo pipeline report #78
Conversation
…owns-by-strata-to-condo-pipeline-report' into 31-add-price-breakdowns-by-strata-to-condo-pipeline-report # Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit.
reports/performance/_outcomes.qmd
Outdated
::: panel-tabset | ||
|
||
```{r _outcomes_imputed_cleaning} | ||
training_data_distinct <- training_data %>% |
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.
Keep only the most recent sale price
@@ -386,3 +386,164 @@ stats_median_yoy_delta %>% | |||
c("Comparison of YOY Change in AV for Sold and Unsold Houses" = 7) | |||
) | |||
``` | |||
|
|||
## Strata |
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 has to use model_fetch_run("2024-12-19-wonderful-yuxin", "2025") since strata_is_imputed is only in the runs for this year,
::: panel-tabset | ||
|
||
```{r _outcomes_imputed_cleaning} | ||
strata <- assessment_pin %>% |
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.
Non livable spaces drastically change these charts
left_join( | ||
training_data %>% | ||
arrange(desc(meta_sale_date)) %>% | ||
distinct(meta_pin, .keep_all = TRUE) %>% |
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.
Keep only the most recent sale
Closes #31