You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our Gaussian process parameters are different than McElreath's. From the `gp` section of the [brms reference manual](https://cran.r-project.org/package=brms/brms.pdf), here's the brms parameterization:
1076
+
Our Gaussian process parameters are different than McElreath's. From the `gp` section of the [brms reference manual](https://cran.r-project.org/package=brms/brms.pdf), we learn the brms parameterization follows the form
What McElreath called $\eta$, Bürkner called $sdgp$. While McElreath estimated $\eta^2$, brms simply estimated $sdgp$. So we'll have to square our `sdgp_gplatlon2` before it's on the same scale as `etasq` in the text. Here it is.
1081
1081
@@ -1535,13 +1535,27 @@ tidy(b13.10) %>%
1535
1535
mutate_if(is.numeric, round, digits = 2)
1536
1536
```
1537
1537
1538
-
And if you wanted a one-sided Bayesian $p$-value for the `male` dummy for the full model, you might execute this.
1538
+
And if you wanted a one-sided Bayesian $p$-value for the `male` dummy for the full model, you execute something like this.
geom_vline(xintercept = 0, color = "#E8DCCF", alpha = 1/2) +
1551
+
stat_halfeyeh(.width = c(.5, .95),
1552
+
color = "#80A0C7", fill = "#394165") +
1553
+
scale_y_continuous(NULL, breaks = NULL) +
1554
+
xlab("b_male (i.e., the population estimate for gender bias)") +
1555
+
coord_cartesian(xlim = c(-1.5, 1.5)) +
1556
+
theme_pearl_earring()
1557
+
```
1558
+
1545
1559
So, the estimate of the gender bias is small and consistent with the null hypothesis. Which is good! We want gender equality for things like funding success.
0 commit comments