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.

21 lines
495B

  1. if(interactive())
  2. {
  3. options(blogdown.ext = ".md",
  4. blogdown.author = "maximewack",
  5. menu.graphics = F,
  6. browser = "qutebrowser",
  7. scipen = 999,
  8. width = 1000,
  9. Ncpus = 2,
  10. pillar.bold = T,
  11. tibble.print_min = 20,
  12. tibble.print_max = 100)
  13. .View <- function(x)
  14. {
  15. x %>%
  16. dplyr::mutate_if(is.character, factor) %>%
  17. DT::datatable(filter = "top", options = list(paging = F, fixedHeader = T))
  18. }
  19. }