Other files ignored by Codecov
NEWS.md
has changed.
man/kable.Rd
has changed.
43 | 43 | #' @param escape Boolean; whether to escape special characters when producing |
|
44 | 44 | #' HTML or LaTeX tables. When \code{escape = FALSE}, you have to make sure |
|
45 | 45 | #' that special characters will not trigger syntax errors in LaTeX or HTML. |
|
46 | - | #' @param ... Other arguments (see Examples). |
|
46 | + | #' @param ... Other arguments (see Examples and References). |
|
47 | 47 | #' @return A character vector of the table source code. |
|
48 | 48 | #' @seealso Other R packages such as \pkg{huxtable}, \pkg{xtable}, |
|
49 | - | #' \pkg{kableExtra}, and \pkg{tables} for HTML and LaTeX tables, and |
|
49 | + | #' \pkg{kableExtra}, \pkg{gt} and \pkg{tables} for HTML and LaTeX tables, and |
|
50 | 50 | #' \pkg{ascii} and \pkg{pander} for different flavors of markdown output and |
|
51 | - | #' some advanced features and table styles. |
|
51 | + | #' some advanced features and table styles. For more on other packages for |
|
52 | + | #' creating tables, see |
|
53 | + | #' \url{https://bookdown.org/yihui/rmarkdown-cookbook/table-other.html}. |
|
52 | 54 | #' @note When using \code{kable()} as a \emph{top-level} expression, you do not |
|
53 | 55 | #' need to explicitly \code{print()} it due to R's automatic implicit |
|
54 | 56 | #' printing. When it is wrapped inside other expressions (such as a |
|
55 | 57 | #' \code{\link{for}} loop), you must explicitly \code{print(kable(...))}. |
|
56 | 58 | #' @references See |
|
57 | - | #' \url{https://github.com/yihui/knitr-examples/blob/master/091-knitr-table.Rnw} |
|
58 | - | #' for some examples in LaTeX, but they also apply to other document formats. |
|
59 | + | #' \url{https://bookdown.org/yihui/rmarkdown-cookbook/kable.html} for some |
|
60 | + | #' examples about this function, including specific arguments according to the |
|
61 | + | #' \code{format} selected. |
|
59 | 62 | #' @export |
|
60 | 63 | #' @examples d1 = head(iris); d2 = head(mtcars) |
|
61 | 64 | #' # pipe tables by default |
Files | Coverage |
---|---|
R | 39.62% |
Project Totals (36 files) | 39.62% |