Is there an efficient way to extract a coefficient table from a stan_jm table?

The summary method for a stan_jm model prints out a nice table of the coefficients for the longitudinal and event models, with means, sd, and quantiles. Is there a way to extract these tables as a data.frame from either the object or its summary?
Larry Hunsicker

  • Operating System: Windows 10 64 bit up-to-date
  • rstanarm Version: 2.19.2
1 Like

OMG! I just tried:
stuff <- as.data.frame(summary(object, pars = ‘long’)
and it worked. Sorry to have bothered you all.
Larry Hunsicker

3 Likes