You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently facing the same problem as was previously discussed here, so it seems that no solution had been found yet: https://discourse.mc-stan.org/t/new-package-for-sensitivity-analysis-using-importance-sampling/17930/6. It seems to me that only particular distribution families are affected (e.g., the zero-one-inflated beta but not the pure beta distribution). Maybe this is a starting point for analyzing the problem. Here is a toy example, which also demonstrates this:
library("brms")
library("adjustr")
y <- runif(100)
x <- rnorm(100)
df <- tibble(y, x)
model1 <- brm(y ~ x, data = df, family = brmsfamily("beta"), init = "0")
model2 <- brm(y ~ x, data = df, family = brmsfamily("zero_one_inflated_beta"), init = "0")
extract_samp_stmts(model1)
extract_samp_stmts(model2)
Many thanks for your support!
The text was updated successfully, but these errors were encountered:
Yes, I downloaded the latest version just today and downloaded it again now to be sure. I still get this error message for the second of the above models:
Error in str2lang(x) : <text>:1:28: unexpected '['
1: Y ~ zero_one_inflated_beta([
^
Hi,
I'm currently facing the same problem as was previously discussed here, so it seems that no solution had been found yet: https://discourse.mc-stan.org/t/new-package-for-sensitivity-analysis-using-importance-sampling/17930/6. It seems to me that only particular distribution families are affected (e.g., the zero-one-inflated beta but not the pure beta distribution). Maybe this is a starting point for analyzing the problem. Here is a toy example, which also demonstrates this:
Many thanks for your support!
The text was updated successfully, but these errors were encountered: