Skip to content

Commit

Permalink
Deal with ggplot2 update
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasWallrich committed Sep 9, 2024
1 parent b251d34 commit 04081e9
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,12 @@ p <- res_agg %>%
</details>

```{r echo=FALSE}
p <- res_agg %>%
ggplot(aes(n, Uncertainty, col = base_rate)) +
facet_wrap(~target_kappa) +
geom_point() + geom_hline(yintercept = .2, color = "red") + geom_hline(yintercept = .1, color = "red", linetype = "dashed") +
labs(y = "Uncertainty (estimate - lower bound of 90% CI)")
p
```

Expand Down

0 comments on commit 04081e9

Please sign in to comment.