easystats / modelbased

:chart_with_upwards_trend: Estimate effects, contrasts and means based on statistical models
https://easystats.github.io/modelbased/
GNU General Public License v3.0
232 stars 19 forks source link

Provide `verbose` parameter to key functions to suppress messages/warnings #223

Open IndrajeetPatil opened 1 year ago

IndrajeetPatil commented 1 year ago
library(modelbased)
library(rstanarm)
library(emmeans)

model <- stan_glm(Sepal.Width ~ Species, data = iris, refresh = 0)
contrasts <- modelbased::estimate_contrasts(model)
#> No variable was specified for contrast estimation. Selecting `contrast = "Species"`.
means <- modelbased::estimate_means(model)
#> We selected `at = c("Species")`.

Created on 2023-03-30 with reprex v2.0.2