Don van den Bergh

Results 13 issues of Don van den Bergh

So from ggplot I'm used to having the labels from a facet above a plot, like so: ![image](https://user-images.githubusercontent.com/21319932/149124221-a0f8ba7f-9120-48a2-b059-10d2a0f32786.png) however, subplot_grid seems to always put these labels below the plot: ```julia...

This following works on Turing v0.21.1: ```julia using Turing # Define a simple Normal model with unknown mean and variance. @model function gdemo(x, y) s² ~ InverseGamma(2, 3) m ~...

bug

## Description The composed function `log_inv_logit_diff(x, y)` does not return the same value as `log(inv_logit(x) - inv_logit(y))` when `x` is infinite. If this is expected behavior, feel free to close...

This is a feature request to implement the following methods: ```julia loglikelihood(d::Normal, ss::NormalStats) loglikelihood(d::AbstractMvNormal, ss::MvNormalStats) ``` This would be useful because many algorithms that use some iterative procedure also need...

I've been trying to install V8 using a local download of `http://jeroen.github.io/V8/v8-8.3.110.13-linux.tar.gz`, but somehow it's not working. Perhaps I'm doing something wrong, but I believe the problem is that the...

Hi, thanks for making a very cool package! I was trying to read my own Lichess games but I encountered an issue with the [crazyhouse variant](https://lichess.org/variant/crazyhouse). The problem is that...

Fixes https://github.com/jasp-stats/INTERNAL-jasp/issues/1887 part of https://github.com/jasp-stats/INTERNAL-jasp/issues/1782 See also https://github.com/jasp-stats/jaspBase/pull/88 The new installation procedure works like this in a nutshell. 1. After installing jaspBase, we *always* write all commit/ hash information for...

@RensDofferhoff I have only tested on Windows and Linux, and Windows was a few weeks ago. Could you give this a try on macOS? I would recommend testing this PR...

If one has a weighted graph, would it make sense for the layout algorithm to account for the weights? This is done in, for instance, the R package `qgraph`. Perhaps...

Fixes #16 Rather than using `options` to set the contrasts, this sets them directly on `model.matrix` via the argument `contrasts.arg`. Feedback/ comments are welcome!