Damon Bayer
Damon Bayer
I created icons for dark and tinted mode:   
Having looked at the source code a bit, it's not really surprising that this happens -- the `regex = T` case is handled quite differently from `regex = F`. I...
@Lionel-Re I opened up a PR to show the beginning of a potential solution: https://github.com/mjskay/tidybayes/pull/332. I am not a maintainer of the project, but I'm happy to help you, if...
@Lionel-Re @FANTA-TCHAKOUNTE 1. For clarity, I think you should probably `drop_na` only on the `.value` column. 2. Using `drop_na` will drop values that are intentionally `NA`, but this may be...
Thanks @mjskay. I removed the `abind` dependency in [`26db78a` (#333)](https://github.com/mjskay/tidybayes/pull/333/commits/26db78af2dc0db707c13b312b9ba469133e77698).
@mbedward I've got a fix for this in https://github.com/mjskay/tidybayes/pull/333, if you want to try it out.
> Hi Damon, you mean scoring closed-form distributions? In _principle_ it should be possible. I think the major part of the work would be designing appropriate input and output formats....
No particular urgency. I hacked this together with the old (non-dev) version of scoringutils for a previous project and would prefer for it to be more supported. Would you be...
Since this is still somewhat up for discussion (based on @seabbs's comment), wanted to note that while $p_\mathrm{hosp}(t)$ is only used for the observation period, the $p_\mathrm{hosp}(t)$ that is generated...
This is simply the result of using `discard_at` on a matrix, so a more minimal example would be: ``` r library(purrr) z [1] 2 2 3 3 ``` Created on...