0

r関数「ペア」(下のパネルにケンダルタウの値、上のパネルにペアプロットの値)を使用してプロットを作成することができました。それでも私には1つの問題があります。上部パネルのドットのサイズを変更するにはどうすればよいですか? これは私のコードです。

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() 
4

1 に答える 1

2

でポイントサイズを設定するupper.panel=(たとえば)に対しても独自の関数を定義できますpanel.pointscex=

panel.points<-function(x,y)
{
  points(x,y,cex=3)
}

pairs(iris[,1:4],lower.panel=panel.Kendall,upper.panel=panel.points)
于 2013-04-04T10:06:17.907 に答える