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
the 'ggs' function didn't appear to natively accommodate brmsmultiple objects (ie the output of brms:brm_multiple(combine= TRUE) due to logical statement:
if ( class(S) =="brmsfit" ) {
S<-S$fit
}
If this logical could be relaxed as follows, everything appears to function as desired thereafter:
if ( "brmsfit"%in% class(S)) {
S<-S$fit
}
Many thanks!
The text was updated successfully, but these errors were encountered:
Hello,
the 'ggs' function didn't appear to natively accommodate brmsmultiple objects (ie the output of brms:brm_multiple(combine= TRUE) due to logical statement:
If this logical could be relaxed as follows, everything appears to function as desired thereafter:
Many thanks!
The text was updated successfully, but these errors were encountered: