Lukas Hergt

Results 22 issues of Lukas Hergt

I have two models of which one has one additional parameter. I'd like to plot these two models on top of each other in one corner plot. Only for the...

Hi @JesusTorrado, I gave this a shot and it seems to be a fairly minimal change. But I'm obviously not super familiar with the internals of Cobaya, hence I am...

Naively I would have thought that setting the MCMC parameter `learn_proposal_Rminus1_min` to something greater than zero will only affect whether the covariance matrix is being learned or not. I was...

Hi @JesusTorrado, sorry to bring this up again, but I never quite managed to fix the remaining problem in #34. The original issue described there was related to a memory...

In lines 278-281 the latex entry `r"\pi_\mathrm{...}"` created for the `logprior` parameters does not include the logarithm `"\log"` or `"\ln"`: ```python 278 for p in self.model.prior: 279 f_paramnames.write("%s*\t%s\n" % (...

### Example highlighting the problem: Simple 1-dimensional example using the `one` likelihood (`one` likelihood for simplicity of the example, problem exists generally, though): ```yaml likelihood: one: params: a: prior: dist:...

When reviewing #232, I initially got tripped up and did not notice the difference in the similar kwargs `label` and `labels`, and got worried that the same kwarg was being...

enhancement

Currently the docstring of `samples.plot.kde_2d()` reads as ```python """KDE plot: See anesthetic.plot.kde_contour_plot_2d.""" ``` I think this is not good enough. For `samples.plot_2d()` it is difficult to list all the possible...

docs

The way things are currently set up, the 1D plotting range by default is determined by a 5 sigma posterior interval, dropping the left and right percentiles. This approach is...

enhancement

Instead of using for-loops in unit tests it would be better to use parametrised tests using [@pytest.mark.parametrize](https://docs.pytest.org/en/stable/parametrize.html#pytest-mark-parametrize-parametrizing-test-functions). These decorators can also be stacked on top of each other in which...