Excel具有此功能,称为“数据栏”,允许基于具有相应长度的单元格值进行条件格式设置。可以使用formatter和color_bar在R中使用“formattable”完成此功能。但是,这个结果是一个html小部件,无法用pdf显示。
以下是我尝试过的一些选项:
webshot:获取小部件的屏幕截图,然后我可以导入pdf作为图像。效率不高也不是最佳选择,因为它不允许嵌套表
xtable / pander - 不允许我添加条件格式
kable + kableExtra:
这一次我取得了最大的成功。从这段代码(how can xtable do cell coloring),我可以做一个条件格式,但它不是颜色条选项,也不允许我改变列的宽度或进行任何更改,因为它成为html和html之间的混合pdf doc。中的乳胶
但是,我真正想做的是: https://tex.stackexchange.com/questions/81994/partially-coloring-cell-background-with-histograms
基本上我希望能够有一个pdf文档,它将显示一个允许嵌套表功能的表+数据栏,它基于单元格值,并且可以调整表的列宽或表可以是缩小以适合一页。
这是我现在基于其他代码的答案: 我想知道如何将乳胶代码插入到lapply函数中,以便它看起来像第二个链接中的答案〜
library(knitr)
library(tidyr)
library(kableExtra)
#options(knitr.table.format="latex")
data(mtcars)
tab =mtcars
tab$mpg<-tab$mpg/100
f <- function(x) cut(x, c(0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7,0.8,0.9,1.0), labels=c( "white","green!10", "green!20", "green!30", "green!40", "green!50", "green!60", "green!70","green!80","green!90"),
include.lowest = FALSE, right = TRUE)
tab["mpg"] <- lapply(tab["mpg"], function(x)
paste0("\\cellcolor{", f(x), "}", x))
kable(tab)
答案 0 :(得分:1)
感谢您发布这样一个非常详细的问题。
get_databar
函数用于将您的一个列替换为新值,例如
> get_databar(1:5)
[1] "\\databar[white]{1}" "\\databar[green!30]{2}" "\\databar[green!50]{3}"
[4] "\\databar[green!70]{4}" "\\databar[green!90]{5}"
只需按照你的意见,我就改编了数据库https://tex.stackexchange.com/questions/81994/partially-coloring-cell-background-with-histograms,因为它很棒,而且有点超出了我的乳胶编码能力。
我已经制作了两个使用数据条函数的例子
独立的sweave / knitr脚本在这里
\documentclass{article}
\usepackage[table,dvipsnames]{xcolor}% http://ctan.org/pkg/xcolor
\usepackage[nomessages]{fp}% http://ctan.org/pkg/
\begin{document}
<<load_libraries, echo = FALSE, eval = TRUE, results ="hide">>=
library(knitr)
library(xtable)
@
<<get_databar, echo = FALSE, eval = TRUE, results ="hide">>=
#' @title get_databar creates labels for xtable
#' @description colors labels and assigns max_value to .GlobalEnv
#' @param values the vector of values to cut
#' @param color one color that is interpretable by the xcolor dvips
#' one of 68 standard colors known to dvips \link{https://en.wikibooks.org/wiki/LaTeX/Colors}, Default: 'green'
#' @param min_value min value in the vector, Default: NULL
#' @param max_value max value in the vector, Default: NULL
#' @param column_width the with of the colum to produce
#' @param transparent, do you want transparent labels for low values, Default: TRUE
#' @return A vector to replace orignial column
get_databar <- function(values,
color = "green",
min_value=NULL,
max_value=NULL,
column_width=10,
transparent=TRUE)
{
if (!is.numeric(values)) stop("values should be a numeric")
if (is.null(min_value)) min_value <- min(values,na.rm=TRUE)-diff(range(values, na.rm=TRUE))/10
if (is.null(max_value)) max_value <- max(values,na.rm=TRUE)
# assign max_value in .GlobalEnv
maxnum <<- max_value
# sequence of breaks
mybreaks <- seq(min_value, max_value, length.out=10)
if (transparent){
cols <- c(paste0(color,"!",seq(10, 90, by=10)))
color_cut_factor <- cut(x=values,
breaks = mybreaks,
labels = cols,
include.lowest = FALSE,
right = TRUE)
color_cut <- as.character(color_cut_factor)
} else {
color_cut=rep(color, length(values))
}
edited_values <- paste0("\\databar[", color_cut,"]{", values,"}")
return(as.character(edited_values))
}
@
<<test, echo = FALSE, eval = TRUE, results ="hide">>=
data(mtcars)
tab = mtcars
tab0<-tab[1:10,1:3]
tab2<-tab[1:10,1:3]
tab0[,1]<-get_databar(tab0[,1])
tab2[,1]<-get_databar(tab2[,1],
color="BlueViolet",
min_value=0,
max_value=max(tab2[,1]),
transparent = FALSE)
print(xtable(tab0,
align = c("l","l","l","l"),
caption = "standard example"),
sanitize.text.function = identity,
file="table0_with_bar_colors.tex")
print(xtable(tab2,
align = c("l","l","l","l"),
caption = "example with dvips color BlueViolet and transparent = FALSE"),
sanitize.text.function = identity,
file="table2_with_bar_colors.tex")
@
%--------------------------------
% This is the new commands blocks
% The first \maxnum will read from R to get the maximum number in the table
% The second creates the databar command, with two parameters, the first default
% parameter is the color, set to green!25
%--------------------------------------
\newcommand{\maxnum}
{%
\Sexpr{maxnum}
}
\newlength{\maxlen}
% databar[color]{value}
\newcommand{\databar}[2][green!25]
{%
\settowidth{\maxlen}{\maxnum}%
\addtolength{\maxlen}{\tabcolsep}%
\FPeval\result{round(#2/\maxnum:4)}%
\rlap{\color{#1}\hspace*{-.5\tabcolsep}\rule[-.05\ht\strutbox]{\result\maxlen}{.95\ht\strutbox}}%
\makebox[\dimexpr\maxlen-\tabcolsep][r]{#2}%
}
%--------------------------------------
\input{table0_with_bar_colors.tex}
\input{table2_with_bar_colors.tex}
\end{document}
如果您需要放置两个表,那么我需要在下一个块之后和表\input
之前添加以下命令(\renewcommand
而不是\newcommand
)
\renewcommand{\maxnum}
{%
\Sexpr{maxnum}
}