Jeffrey Girard
Jeffrey Girard
Thanks as always. 1. I'll dig into the literature to try to determine how concerned to be about Pareto k diagnostics. 2. Note that I re-ran the {brms} model with...
I second that this would be helpful. Currently, it only uses pairwise.emmc but it would be great to be able to specify eff.emmc (for sum contrasts) too. ``` r library(emmeans)...
I'll also note that, for planned contrasts, I really like the {hypr} package: https://github.com/mmrabe/hypr
> Small numbers can be meaningfully different. I believe that it's a mistake to round. I think the key phrase there is "can be". So maybe add an optional argument...
> Part of the issue is if you only want to do this for print or if you really want to round the data in the skimr object. If you...
@ben-schwen Were you waiting on a response from me on this?
I think something like `print(skim(df), digits = 3)` would be nice.
I was having trouble finding the base R version of nest() and unnest() but I'll do a bit more searching. And yes we can change the names of whatever you...
> I'm not sure what clustered bootstrap correlations should do: bootstrap within clusters, and then correlate the complete data? What if we have unequal cluster sizes? The idea is to...
`do.call(rbind, data[index])` on split data was clever. And I confirmed that the bootstrap SE was the same: ```r sd(bs_results_tidyr$t[, 2]) #> [1] 0.1203166 sd(bs_results_split$t[, 2]) #> [1] 0.1203166 ```