问题描述
可复制的示例:
我有一个数据框,其中使用 sjmisc 包,它与 dplyr 很好地配合使用v0.4.2.
I have a data frame which has labelled variables using the sjmisc package, which works nicely together with dplyr since v0.4.2.
library(dplyr)
library(sjmisc)
library(ggplot2)
data("diamonds")
df= tbl_df(diamonds) %>%
select(cut, carat, price) %>%
set_label(c("", "Kt", "EUR")) %>%
slice(1:10)
如str(df)
所示,它正确地在两列中包含标签:
As str(df)
shows it properly contains for two columns the labels:
Classes ‘tbl_df’, ‘tbl’ and 'data.frame': 10 obs. of 3 variables:
$ cut : Ord.factor w/ 5 levels "Fair"<"Good"<..: 5 4 2 4 2 3 3 3 1 3
$ carat: atomic 0.23 0.21 0.23 0.29 0.31 0.24 0.24 0.26 0.22 0.23
..- attr(*, "label")= Named chr "Kt"
.. ..- attr(*, "names")= chr "carat"
$ price: atomic 326 326 327 334 335 336 336 337 337 338
..- attr(*, "label")= Named chr "EUR"
.. ..- attr(*, "names")= chr "price"
还使用 R-Studio IDE ,我可以看到View(df)
.
现在,我想通过 knitr/rmarkdown/LaTeX 工具链打印此数据框,如下所示: pdf使用 xtable .
Now I want to print this data frame via the knitr/rmarkdown/LaTeX toolchain as pdf using xtable.
library(xtable)
print(xtable(df), comment=F)
这导致
\begin{table}[ht]
\centering
\begin{tabular}{rlrr}
\hline
& cut & carat & price \\
\hline
1 & Ideal & 0.23 & 326 \\
2 & Premium & 0.21 & 326 \\
3 & Good & 0.23 & 327 \\
4 & Premium & 0.29 & 334 \\
5 & Good & 0.31 & 335 \\
6 & Very Good & 0.24 & 336 \\
7 & Very Good & 0.24 & 336 \\
8 & Very Good & 0.26 & 337 \\
9 & Fair & 0.22 & 337 \\
10 & Very Good & 0.23 & 338 \\
\hline
\end{tabular}
\end{table}
问题:
不幸的是,标签没有用作标题的第二行.
So unfortunately, the labels are not used as second line in the header.
问题:
如何获得克拉"下方的"Kt"和价格"下方的"EUR"作为第二个标题行?
How can I get the "Kt" below the "carat" and "EUR" below the "price" as a second header row ?
我正在寻找一种解决方案,而不需要手动将标签手动添加到第二行,它应该自动将标签应用于打印表格.如果可能,标签的字体大小应比第一行标题行小.
I am looking for a solution without manually adding the labels by hand to the second line, it should automatically apply the labels to the printed table. When possible the labels shall have a bit smaller font size than the first row header line.
推荐答案
这是使R社区出色的原因: David Scott , xtable的维护者包,提供了完整的解决方案以及新功能的关键要素:
This is what makes the R community great: David Scott, the maintainer of the xtable package, provided the complete solution and also key ingredients for a new function which does the job:
#' Create LaTeX code for xtable output of a labelled dataframe
#'
#' This function helps to print the unit labels as second line via xtable.
#'
#' @param x A dataframe object.
#' @param include.rownames A logical, which indicates whether rownames are printed.
#' @param booktabs A logical, which indicates whether the booktabs environment shall be used.
#' @param comment A logical, which indicates whether the xtable comment shall be printed.
#' @param vspace A interline space between the header names und units in cex units.
#' @return LaTeX code for output.
#' @export
#' @examples
#' iris %>%
#' head() %>%
#' set_label(c(rep("cm", 4), "")) %>%
#' toLatex_labelled(include.rownames = FALSE)
#'
toLatex_labelled= function(x, vspace = -0.8, include.rownames = TRUE, booktabs = FALSE, comment = TRUE, ...){
# Check
assert_that(is.data.frame(x))
# First setup the xtable oject
x= xtable(x)
# Find out labels
labels= sjmisc::get_label(x)
# Do the formatting before calling toLatex when labels are provided
# otherwise just return x via toLatex
if(! is.null(labels)){
alignment= tail(align(x), -1)
small= function(x,y){ paste0('\\multicolumn{1}{',y,'}{\\tiny ', x, '}')}
labels= unlist(mapply(function(x,y) small(x,y), x = labels, y = alignment))
add.to.row= list(pos = list(0), command = NULL)
command= paste(labels, collapse = "&\n")
if(isTRUE(include.rownames)) { command= paste("&", command) }
linetype= ifelse(isTRUE(booktabs), "\\midrule", "\\hline")
command= paste0("[", vspace, "ex]\n", command, "\\\\\n", linetype, "\n")
add.to.row$command= command
toLatex(x,
hline.after = c(-1, nrow(x)),
add.to.row = add.to.row,
comment = comment,
include.rownames = include.rownames,
booktabs = booktabs, ...)
} else {
toLatex(x,
comment = comment,
include.rownames = include.rownames,
booktabs = booktabs, ...)
}
}
这篇关于将标签属性包含到xtable标头中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!