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.

20 lines
468B

  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 = 10000,
  9. Ncpus = 2,
  10. tibble.print_min = 10,
  11. tibble.print_max = 40)
  12. .View <- function(x)
  13. {
  14. x %>%
  15. dplyr::mutate_if(is.character, factor) %>%
  16. DT::datatable(filter = "top", options = list(paging = F, fixedHeader = T))
  17. }
  18. }