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
Is there a way to produce CIs for the various paths in the printing method? Or would it be possible to add this?
(Right now I use lapply(extract_models(.), confint))
Thanks!
The text was updated successfully, but these errors were encountered:
The JSmediation package was designed to work well with packages from the tidyverse. Especially the purrrpackage. We're in the process of writing the tutorials to fully understand how to use JSmediation interface.
The way to deal with most of problems of this kind would be:
library(tidyverse)
model %>%
extract_models() %>%
map(~confint(.x))
However, CIs seems important enough so we add them in the mediation_model print method. I will add this in the next couple of weeks.
Is there a way to produce CIs for the various paths in the printing method? Or would it be possible to add this?
(Right now I use
lapply(extract_models(.), confint)
)Thanks!
The text was updated successfully, but these errors were encountered: