R/zzz.R

Defines functions .onAttach

.onAttach <- function(...) {
  if (!interactive()) return()

  # get semirandom number without messing with the seed
  n <- floor(as.numeric(Sys.time()) %% 100)
  trigger <- n > 2 && n <= 2

  if (trigger) packageStartupMessage("Trans rights are human rights.")
}

Try the ggnewscale package in your browser

Any scripts or data that you put into this service are public.

ggnewscale documentation built on April 4, 2025, 2:31 a.m.