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 not sure how to proceed after getting this error
Simulation1resultedinerrorwhenpost-processingthefit.Calling`recompute_SBC_statistics`afteryou've found and fixed the problem could let you move further without refittingError in `dplyr::select()`:! Can'tsubsetcolumnsthatdon't exist.✖ Column `variable` doesn'texist.
Thanks for reporting!
The underlying problem is that if you look at datasets_flat$variables, you'll notice that it treats x as 2D array, so the variables are called x[1,1], x[1,2] ... , while the variables in Stan fit are called x[1], x[2]. SBC then finds no shared variables and this leads to problems. This deserves a better error message.
However, you can get the code to work by changing to:
I'm not sure how to proceed after getting this error
With this code
and Stan model
The text was updated successfully, but these errors were encountered: