成对的点大小图

时间:2013-04-04 09:53:12

标签: r

我设法用r函数“pair”(下面板中的Kendall tau的值和上面板中的成对图)创建一个图。我还有一个问题。如何更改上面板中点的大小?这是我的代码。

panel.Kendall <- function(x,y,digits=2, prefix="", cex.cor)
{
usr <- par("usr"); on.exit(par(usr))
par(usr = c(0, 1, 0, 1))
r <- Kendall(x, y)$tau
txt <- format(c(r, 0.123456789), digits=digits)[1]
txt <- paste(prefix, txt, sep="")
if(missing(cex.cor)) cex <- 0.8/strwidth(txt)
text(0.5, 0.5, txt, cex = cex * 0.5)
}
png("Kendall1.jpg",width=600,height=600,res=100)
pairs(all[c(2,6,8,9,10,11,14,15)],lower.panel=panel.Kendall)
dev.off() 

1 个答案:

答案 0 :(得分:1)

您也可以为upper.panel=定义自己的函数(例如panel.points),其中您使用cex=

设置点数大小
panel.points<-function(x,y)
{
  points(x,y,cex=3)
}

pairs(iris[,1:4],lower.panel=panel.Kendall,upper.panel=panel.points)