swh:1:snp:2c68a6c5a8af2f06ac2c0225927f25b54fd1f9d0
Raw File
Tip revision: 6acd4f1707b182a2cbe2f4a4c2d4196571d36eb3 authored by Dominique Makowski on 05 December 2020, 08:30:02 UTC
version 0.8.0
Tip revision: 6acd4f1
zzz.R
.onAttach <- function(libname, pkgname) {
  message <- "Note: The default CI width (currently `ci=0.89`) might change in future versions (see https://github.com/easystats/bayestestR/issues/250). To prevent any issues, please set it explicitly when using bayestestR functions, via the 'ci' argument."
  if (format(Sys.time(), "%m%d") == "0504") {
    message <- paste0(message, "\n\nMay the fourth be with you!")
  }
  packageStartupMessage(message)
}
back to top