Open jgabry opened 3 years ago
Right now stanreg_list can be used with multiple stanreg objects passed in separately
stanreg_list
stanreg_list(fit1, fit2)
but it can't handle them passed in together in a list
x <- list(fit1, fit2) stanreg_list(x)
The latter is much more convenient in some cases so we should support it. Should be an easy change. Assigning myself.
Right now
stanreg_list
can be used with multiple stanreg objects passed in separatelybut it can't handle them passed in together in a list
The latter is much more convenient in some cases so we should support it. Should be an easy change. Assigning myself.