blob: 7b4b72bfb6cde0be4eaed80798e9f2bdaea00277 [file] [log] [blame]
Hao Zhue10cfd32017-02-21 16:41:14 -05001#' kableExtra
2#'
Hao Zhu76281fe2017-07-03 19:33:09 -04003#' @description When we are talking about table generators in R,
4#' [knitr](https://yihui.name/knitr/)'s `kable()` function wins lots of flavor
5#' by its ultimate simplicity. Unlike those powerful table rendering engines
6#' such as [`xtable`](https://CRAN.R-project.org/package=xtable), the philosophy
7#' behind [`knitr::kable()`](https://rdrr.io/cran/knitr/man/kable.html) is to
8#' make it easy for programmers to use. Just as it claimed in its
9#' function description, "this is a very simple table generator. It is simple
10#' by design. It is not intended to replace any other R packages for making
11#' tables. - Yihui".
12#'
13#' However, the ultimate simplicity of `kable()` also brought troubles to some
14#' of us, especially for new R users, who may not have a lot of experience on
15#' generating tables in R. It is not rare to see people including experienced
16#' users asking questions like how to center/left-align a table on Stack
17#' Overflow. Also, for me personally, I found myself repeatedly parsing CSS
18#' into `kable()` for some very simple features like striped lines. For LaTeX,
19#' it's even worse since I'm almost Stack Overflow dependent for LaTeX...
20#' That's why this package `kableExtra` was created.
21#'
22#' I hope with `kableExtra`, you can
23#' - Use default base `kable()` (Or a good alternative for markdown tables is
24#' `pander::pander()`) for all simple tables
25#' - Use `kable()` with `kableExtra` to generate 90 % of complex/advanced
26#' tables in either HTML or LaTeX
27#' - Only have to mess with raw HTML/LaTeX in the last 10% cases where
28#' `kableExtra` cannot solve the problem
29#'
Hao Zhu4b0c51e2017-08-01 15:21:07 -040030#' For a full package documentation, please visit the
31#' [package documentation site](http://haozhu233.github.io/kableExtra/)
32#' for more information
33#'
Hao Zhu76281fe2017-07-03 19:33:09 -040034#' @section Features:
35#' **Pipable syntax:** `kableExtra` is NOT a table generating package. It is a
36#' package that can "add features" to a `kable` output using a syntax
37#' that every useR loves - the [pipe](http://r4ds.had.co.nz/pipes.html).
38#' We see similar approaches to deal with plots in packages like `ggvis` and
39#' `plotly`. There is no reason why we cannot use it with tables.
40#'
41#' **Unified functions for both HTML and PDF:** Most functionalities in
42#' `kableExtra` can work in both HTML and PDF. In fact, as long as you
43#' specifies format in `kable` (which can be set globally through option
44#' `knitr.table.format`), functions in this package will pick the right way
45#' to manipulate the table be themselves. As a result, if users want to left
46#' align the table, `kable_styling(kable(...), position = "left")` will work
47#' in both HTML and PDF.
48#'
49#' @note If you found a feature on the documentation site that is not available
50#' in the version of `kableExtra` you are using, try to install the pre-release
51#' version from github. You can do so by running
52#' `devtools::install_github("haozhu233/kableExtra")`.
53#'
54#' Also, note that This package can load required LaTeX package automatically in
55#' vanilla rmarkdown. For customized rmarkdown templates, it is recommended to
56#' load related LaTeX packages manually.
57#'
Hao Zhuf7994dd2017-02-27 16:58:42 -050058#' @importFrom stringr str_count str_split str_match str_detect str_match_all
Hao Zhub2b41992017-10-03 12:50:03 -040059#' str_extract str_replace_all str_trim str_extract_all str_sub str_replace
Hao Zhu26234122017-02-22 15:34:33 -050060#' @importFrom xml2 read_xml xml_attr xml_has_attr xml_attr<- read_html
Hao Zhuf7994dd2017-02-27 16:58:42 -050061#' xml_child xml_children xml_name xml_add_sibling xml_add_child xml_text
Hao Zhu9bab1532017-07-24 15:08:41 -040062#' xml_remove write_xml xml_text<-
Hao Zhu26234122017-02-22 15:34:33 -050063#' @importFrom rvest html_table
Hao Zhu68b5bbf2018-03-26 11:30:34 -040064#' @importFrom knitr knit_meta_add include_graphics knit_print asis_output kable
Hao Zhueaef4312018-01-10 17:05:23 -050065#' @importFrom rmarkdown latex_dependency html_dependency_bootstrap
66#' html_dependency_jquery
Hao Zhuf7994dd2017-02-27 16:58:42 -050067#' @importFrom magrittr %>%
Hao Zhu248bbef2018-04-02 18:25:14 -040068#' @importFrom utils read.csv head
Hao Zhub35f1882017-10-10 16:34:16 -040069#' @importFrom readr read_lines read_file
Hao Zhu9ce317e2017-10-12 18:19:55 -040070#' @importFrom scales rescale
71#' @importFrom viridisLite viridis
Hao Zhu064990d2017-10-17 18:08:42 -040072#' @importFrom stats ave
Hao Zhu6290fdd2017-10-24 00:10:32 -040073#' @importFrom grDevices col2rgb
Hao Zhu5b71b2d2018-03-26 16:31:09 -040074#' @importFrom rstudioapi isAvailable viewer
Hao Zhueaef4312018-01-10 17:05:23 -050075#' @import htmltools
Hao Zhue10cfd32017-02-21 16:41:14 -050076#' @name kableExtra-package
77#' @aliases kableExtra
78#' @docType package
79#' @keywords package
80NULL
Hao Zhu26234122017-02-22 15:34:33 -050081
82#' @export
83magrittr::`%>%`
Hao Zhu68b5bbf2018-03-26 11:30:34 -040084
85#' @export
86knitr::kable