Skip to content

Commit

Permalink
Update reports/performance/_outliers.qmd
Browse files Browse the repository at this point in the history
Co-authored-by: Dan Snow <[email protected]>
  • Loading branch information
Damonamajor and dfsnow authored Jan 8, 2025
1 parent 0ec4cd8 commit e5a3cdf
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions reports/performance/_outliers.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -483,26 +483,12 @@ outlier_decile_breakout(training_data, 1)
::: panel-tabset

### Card Level

```{r _outliers_output_errors_card}
assessment_card %>%
summarize(
"NA Card FMV" = sum(is.na(pred_card_initial_fmv)),
"Negative Card FMV" = sum(pred_card_initial_fmv < 0, na.rm = TRUE)
) %>%
datatable()
```

### Pin Level
```{r _outliers_output_errors_pin}
assessment_pin %>%
summarize(
"NA Pin FMV" = sum(is.na(pred_pin_final_fmv)),
"Negative Pin FMV" = sum(pred_pin_final_fmv < 0, na.rm = TRUE),
"NA Building FMV" = sum(is.na(pred_pin_final_fmv_bldg)),
"Negative Building FMV" = sum(pred_pin_final_fmv_bldg < 0, na.rm = TRUE),
"NA Land FMV" = sum(is.na(pred_pin_final_fmv_land)),
"Negative Land FMV" = sum(pred_pin_final_fmv_land < 0, na.rm = TRUE)
) %>%
datatable()
```
:::

0 comments on commit e5a3cdf

Please sign in to comment.