Skip to content

Commit

Permalink
lintr
Browse files Browse the repository at this point in the history
  • Loading branch information
Damonamajor committed Jan 8, 2025
1 parent e5a3cdf commit 9400f93
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions reports/performance/_outliers.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -491,4 +491,21 @@ assessment_card %>%
"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 9400f93

Please sign in to comment.