knitr::opts_chunk$set(echo = TRUE)
options(knitr.table.format = "html")

General

d <- describe(df)

Data Frame infos

d$df %>% 
  dplyr::mutate_if(is.numeric, signif, 3) %>%
  knitr::kable() %>% 
  kableExtra::kable_styling(bootstrap_options = "striped", full_width = F)

Data Frame variables

d$vars %>% 
  dplyr::mutate_if(is.numeric, signif, 3) %>%
  knitr::kable() %>% 
  kableExtra::kable_styling(bootstrap_options = "striped", full_width = F)


AdrienLeGuillou/descriptor documentation built on May 22, 2019, 7:55 p.m.