1

我经常从模拟数据中生成直方图,并发现为数据附加关联的十分位表非常有帮助。我一直在用 plotrix 的 addtable2plot 函数来做这件事。我还发现突出显示表中包含 50% 值的行很有用 - 这是一个示例:

library(plotrix)

# Generate data

mu <- -1.771957
sd <- 0.4716474

foo <- rlnorm(100000, mu, sd)

# Generate decile table
xmax <- .75

max <- format(xmax, digits=2, nsmall=2)

dc <- quantile(foo, probs=seq(0, 1, 0.1))
dps <- c("100%", "90%", "80%", "70%", "60%", "50%", "40%", "30%", "20%", "10%", "0%")
dc <- format(round(dc, digits=2), nsmall=2)

decile <- as.data.frame(dps)
deciles <- as.data.frame(cbind(dps,dc), row.names=FALSE)
colnames(deciles) <- c("Probability", "Rate")
deciles$"Rate" <- as.character(deciles$"Rate")
deciles[1,2] <- "0.00"
deciles[11,2] <- paste(">", max, sep="")

# create a plot
hist(foo, freq=F, xlim=c(0,xmax), breaks=50, col="blue")
top <- max(axis(2))
rect(xleft=(.69*xmax), xright=(1.04*xmax), ybottom=(.615*top), ytop=(.665*top), col="gray91", border=NA)
addtable2plot(x=(1.04*xmax), y=(top), xjust=1, yjust=0, table=deciles, cex=0.82,
          title="Title", hlines=TRUE, vlines=TRUE, bty="o", lwd=1.5, bg="transparent")

如您所见,我只是通过在表格图下方添加一个彩色矩形来进行着色。这需要对每个直方图的 xleft、ybottom 和 ytop 参数进行大量调整。

有没有什么办法可以毫不费力地始终如一地突出显示?谢谢,

4

1 回答 1

3

你的意思是这样的,也许:

bg_col <- matrix("white",nrow(deciles),ncol(deciles))
bg_col[11,] <- "grey"

# create a plot
hist(foo, freq=F, xlim=c(0,xmax), breaks=50, col="blue")
top <- max(axis(2))
rect(xleft=(.69*xmax), xright=(1.04*xmax), ybottom=(.615*top), ytop=(.665*top), col="gray91", border=NA)
addtable2plot(x=(1.04*xmax), y=(top), xjust=1, yjust=0, table=deciles, cex=0.82,
          title="Title", hlines=TRUE, vlines=TRUE, bty="o", lwd=1.5, bg= bg_col)

在此处输入图像描述

正如你所看到的,我把你的rect电话留在那里,只是为了比较。里面有一个简短的说明?addtable2plot

如果 bg 是与 x 尺寸相同的颜色矩阵,则这些颜色将是单元格的背景。默认为无背景颜色。

这就是我想出如何做到这一点的方法。

于 2012-07-13T15:58:27.860 回答