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.

19 lines
427B

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