-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expand to more response distributions #2
Comments
I'm interested in implementing the beta distribution for continuous variables that are bounded between 0 and 1. The brms specification for the beta distribution contains two parameters:
where I am wondering if we can implement the beta distribution in the coevolutionary model in the same way as with the normal distribution, by adding
Perhaps @erik-ringen could help here. |
I'm not sure we can feasibly implement I will remove |
I don't think this works, because in the context of beta distribution the sigma is on the log-odds scale for the expected value. I would be inclined to treat it like the negative binomial, where phi is just an additional parameter that is estimated rather than part of the coevolutionary process. |
Additionally, I think it would be straightforward to add the student_t distribution as a robust alternative to normal. The setup would be exactly the same as the normal, just with an additional degrees of freedom parameter (nu) to estimate. |
Agree. I've added student_t to the list above. |
Only
bernoulli_logit
andordered_logistic
are currently implemented, but it makes sense to expand to more:poisson
normal
lognormal
neg_binomial
student_t
categorical_logit
exponential
binomial_logit
beta
beta_binomial
The text was updated successfully, but these errors were encountered: