无论如何要在绘图中添加表格。假设我有下面的情节:
curve(dnorm, -3, +4)
现在我想在图下方添加一个矩阵:
testMat <- matrix(1:20, ncol = 5)
我的目标?我正在编写一个绘图函数,它不仅创建了一个绘图,而且还显示了一个矩阵,其中包括我在绘图下方感兴趣的信息。
请参阅附图以了解我的意思。我真的很感谢你的帮助。
可能有更好的方法来做到这一点,但一种选择可能是使用“绘制”矩阵和数据框的包之一,如“gplots”包。
这是一个非常简单的示例(您可能可以自定义它以更好地控制最终布局)。
# Some sample data
testMat <- matrix(1:20, ncol = 5)
testMatDF <- as.data.frame(testMat)
names(testMatDF) <- c("Hey there", "Column 2",
"Some * Symbols", "And ^ More",
"Final Column")
rownames(testMatDF) <- paste("Group", 1:4)
# Load the package
library(gplots)
# Set par for plotting a three-row plot
par(mfrow = c(3, 1))
curve(dnorm, -3, +4)
textplot(testMat)
textplot(testMatDF)
结果:
如果您想在绘图的位置上获得更多创意,您也可以使用layout()
而不是。par(mfrow...)
例如:
layout(matrix(c(1, 1, 2, 3, 3, 3),
2, 3, byrow = TRUE))
curve(dnorm, -3, +4)
textplot(testMat)
textplot(testMatDF)
包plotrix
提供功能addtable2plot
。
帮助文件中的示例:
library(plotrix)
testdf<-data.frame(Before=c(10,7,5),During=c(8,6,2),After=c(5,3,4))
rownames(testdf)<-c("Red","Green","Blue")
barp(testdf,main="Test addtable2plot",ylab="Value",
names.arg=colnames(testdf),col=2:4)
# show most of the options
addtable2plot(2,8,testdf,bty="o",display.rownames=TRUE,hlines=TRUE,
title="The table")
编辑: 将表格放在一个新的情节中,将其放在情节下方。
library(plotrix)
layout(matrix(c(1,2), 2, 1, byrow = TRUE),
widths=c(1,1), heights=c(2,1))
testdf<-data.frame(Before=c(10,7,5),During=c(8,6,2),After=c(5,3,4))
rownames(testdf)<-c("Red","Green","Blue")
barp(testdf,main="Test addtable2plot",ylab="Value",
names.arg=colnames(testdf),col=2:4)
plot.new()
addtable2plot(0,0,testdf,bty="o",display.rownames=TRUE,hlines=TRUE,
title="The table")