Skip to content

GGS for brmsmultiple objects #80

Description

@J-Baxter

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 ( 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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions