Tomás Capretto

Results 62 issues of Tomás Capretto

I want to have a button inside a `tabPanel` within a `tabBox` that when clicked switches to another `tabPanel` within the same `tabBox`. None of the approaches I tried worked....

The following is a list of features we're missing (or covering only partially) in Bambi * Distributional models (we model more than the mean parameter of the response) * Multivariate...

enhancement
discussion

The brms package has a [`brmsformula()`](https://rdrr.io/cran/brms/man/brmsformula.html) function that is very useful to specify several formulas for different components of the model. If we plan to extend Bambi capabilities and include,...

enhancement
Discussion

See the following example ```python import bambi as bmb import numpy as np import pandas as pd ``` ```python data = pd.DataFrame( { "y" : np.random.binomial(1, 0.5, 50), "x" :...

discussion

We can define ```python def truncate(x, l): x = (x - l) * (x >= l) return x ``` And then simply do ```python formula = "response ~ x +...

documentation

Include a comparison with how we define hierarchical models with PyMC too.

documentation

At some point, we will have to update how we ask users to specify prior distributions. I think our approach is quite good for the current state of Bambi (basically,...

discussion