14

我正在尝试创建一个数据表,其单元格根据单元格中的值具有不同的颜色。我可以使用包中的功能来实现这addtable2plot一点plotrix。该addtable2plot函数在已经存在的绘图上放置一个表格。该解决方案的问题是我不想要情节,只想要表格。

我也看过heatmap函数。问题是我的表中的一些值是字符,据heatmap我所知,这些函数只接受数字矩阵。另外,我希望我的列名位于表格的顶部,而不是底部,这似乎不是一个选择。

这是addtable2plot. 如果我能得到一张桌子,填满整个屏幕,那就太好了。

library(plotrix)

testdf<-data.frame(Before=c(10,7,5,9),During=c(8,6,2,5),After=c(5,3,4,3))
rownames(testdf)<-c("Red","Green","Blue","Lightblue")
barp(testdf,main="Test addtable2plot",ylab="Value",
     names.arg=colnames(testdf),col=2:5)
# show most of the options including the christmas tree colors
abg<-matrix(c(2,3,5,6,7,8),nrow=4,ncol=3)
addtable2plot(2,8,testdf,bty="o",display.rownames=TRUE,hlines=TRUE,
              vlines=TRUE,title="The table",bg=abg)

任何帮助将不胜感激。

4

3 回答 3

19

另一种heatmap选择:

library(gplots)

# need data as matrix
mm <- as.matrix(testdf, ncol = 3)

heatmap.2(x = mm, Rowv = FALSE, Colv = FALSE, dendrogram = "none",
          cellnote = mm, notecol = "black", notecex = 2,
          trace = "none", key = FALSE, margins = c(7, 11))

heatmap.2绘图的一侧,axis要绘制的内容是硬编码的。但是,如果您heatmap.2在控制台键入“”并将输出复制到编辑器,您可以搜索axis(1,其中 1 是side参数(两次命中)。然后,您可以从 1(图下方的轴)更改为 3(图上方的轴)。将更新后的函数分配给一个新名称,例如 heatmap.3,然后像上面一样运行它。

在此处输入图像描述


另一种addtable2plot选择

library(plotrix)

# while plotrix is loaded anyway:
# set colors with color.scale
# need data as matrix*
mm <- as.matrix(testdf, ncol = 3)
cols <- color.scale(mm, extremes = c("red", "yellow"))

par(mar = c(0.5, 1, 2, 0.5))
# create empty plot
plot(1:10, axes = FALSE, xlab = "", ylab = "", type = "n")

# add table
addtable2plot(x = 1, y = 1, table = testdf,
              bty = "o", display.rownames = TRUE,
              hlines = TRUE, vlines = TRUE,
              bg = cols,
              xjust = 2, yjust = 1, cex = 3)

# *According to `?color.scale`, `x` can be a data frame.
# However, when I tried with `testdf`, I got "Error in `[.data.frame`(x, segindex) : undefined columns selected".

在此处输入图像描述


另一种color2D.matplot选择

library(plotrix)
par(mar = c(0.5, 8, 3.5, 0.5))
color2D.matplot(testdf, 
                show.values = TRUE,
                axes = FALSE,
                xlab = "",
                ylab = "",
                vcex = 2,
                vcol = "black",
                extremes = c("red", "yellow"))
axis(3, at = seq_len(ncol(testdf)) - 0.5,
     labels = names(testdf), tick = FALSE, cex.axis = 2)
axis(2, at = seq_len(nrow(testdf)) -0.5,
     labels = rev(rownames(testdf)), tick = FALSE, las = 1, cex.axis = 2)

在此处输入图像描述

在这个小练习之后,我倾向于同意@Drew Steen 的观点,即也可以研究 LaTeX 替代品。例如,检查这里这里

于 2013-09-06T20:20:24.937 回答
10

你可以用 grid 和 gtable 破解一些东西,

palette(c(RColorBrewer::brewer.pal(8, "Pastel1"),
          RColorBrewer::brewer.pal(8, "Pastel2")))


library(gtable)
gtable_add_grobs <- gtable_add_grob # alias

d <- head(iris, 3)
nc <- ncol(d)
nr <- nrow(d)

extended_matrix <- cbind(c("", rownames(d)), rbind(colnames(d), as.matrix(d))) 

## text for each cell
all_grobs <- matrix(lapply(extended_matrix, textGrob), ncol=ncol(d) + 1)

## define the fill background of cells
fill <- lapply(seq_len(nc*nr), function(ii) 
  rectGrob(gp=gpar(fill=ii)))

## some calculations of cell sizes
row_heights <- function(m){
  do.call(unit.c, apply(m, 1, function(l)
    max(do.call(unit.c, lapply(l, grobHeight)))))
}

col_widths <- function(m){
  do.call(unit.c, apply(m, 2, function(l)
    max(do.call(unit.c, lapply(l, grobWidth)))))
}

## place labels in a gtable
g <- gtable_matrix("table", grobs=all_grobs, 
                   widths=col_widths(all_grobs) + unit(4,"mm"), 
                   heights=row_heights(all_grobs) + unit(4,"mm"))

## add the background
g <- gtable_add_grobs(g, fill, t=rep(seq(2, nr+1), each=nc), 
                      l=rep(seq(2, nc+1), nr), z=0,name="fill")

## draw
grid.newpage()
grid.draw(g)

在此处输入图像描述

于 2013-09-06T22:18:02.457 回答
6

一种基于ggplot2. 我不完全理解您实际上想要如何映射颜色,因为在您的示例中,表中的颜色未映射到 的行名testdf,但在这里我已将颜色映射到value(转换为因子)。

testdf$color <- rownames(testdf)
dfm <- melt(testdf, id.vars="color")

p <- ggplot(dfm, aes(x=variable, y=color, label=value, fill=as.factor(value))) + 
  geom_text(colour="black") +
  geom_tile(alpha=0.2)
p

您可以使用 更改值映射到的变量fill=,也可以使用 更改映射scale_fill_manual(values=[a vector of values]

也就是说,我很想看到一个产生实际表格的解决方案,而不是伪装成表格的情节。可能使用 Sweave 和 LaTeX 表?

在此处输入图像描述

于 2013-09-06T18:54:13.690 回答