You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
953B

  1. #' @importFrom dplyr left_join right_join full_join inner_join semi_join anti_join
  2. #' @importFrom dplyr mutate select filter arrange bind_rows bind_cols group_by pull slice data_frame row_number
  3. #' @importFrom tidyr gather spread
  4. #' @keywords internal
  5. "_PACKAGE"
  6. plot_settings <- new.env(parent = emptyenv())
  7. plot_settings$default <- list(
  8. transition_length = 2,
  9. state_length = 1,
  10. ease_default = "sine-in-out",
  11. ease_other = NULL,
  12. enter = setNames(list(enter_fade()), "enter_fade()"),
  13. exit = setNames(list(exit_fade()), "exit_fade()"),
  14. text_family = "Fira Mono",
  15. title_family = "Fira Mono",
  16. text_size = 5,
  17. title_size = 17,
  18. color_header = "#737373",
  19. color_other = "#d0d0d0",
  20. color_missing = "#ffffff",
  21. color_fun = scales::brewer_pal(type = "qual", "Set1"),
  22. text_color = NA,
  23. cell_width = 1,
  24. cell_height = 1
  25. )