I want to change the pch shape and color of my reference data in taylor.diagram(), from plotrix package. If anyone can show me how to do it, i am really appreciated. The reference's model is highlighted by dark circle at the bottom of x axis. Thanks in advance. It is my script using
library(plotrix)
# windows()
taylor.diagram(ref=a1, model=b1, pos.cor=T, col=cols[1], pch=17,add=FALSE,
pcex=3,main="",cex=1.3)
taylor.diagram(ref=a1, model=c1, pos.cor=T, col=cols[2], pch=17,add=TRUE,
pcex=3)
taylor.diagram(ref=a1, model=d1, pos.cor=T, col=cols[3], pch=17,add=TRUE,
pcex=3)
taylor.diagram(ref=a1, model=e1, pos.cor=T, col=cols[4], pch=17,add=TRUE,
pcex=3)
taylor.diagram(ref=a1, model=f1, pos.cor=T, col=cols[5], pch=17,add=TRUE,
pcex=3)
taylor.diagram(ref=a1, model=g1, pos.cor=T, col=cols[6], pch=15,add=TRUE,
pcex=3)
title(main="Spatial Taylor Diagram of Precipitation (CRU)",cex.main=2)
legend("topright",cex=1.8,pt.cex=2,title="GCM-RCM models",
legend=c("CNRMr1-ALADIN63","ECEARTHr12-CCLM","HadGEMr1-HIRHAM",
"MPIr1-RACMO","NorESMr1-REMO","EOBS"),
pch=c(17,17,17,17,17,15),col=cols)
Some trial data:
a <- array(c(1,4,8,5,6,2,2,7,3), dim=c(3,3))
b <- array(c(9,5,3,6,5,8,1,2,7) , dim=c(3,3))
c <- array(c(1,6,8,5,8,5,8,9,3) , dim=c(3,3))
a2 <- as.numeric(a)
b2 <- as.numeric(b)
c2 <- as.numeric(c)
a2 is the reference, b2 and c2 are the models
It looks like it's not possible using the existing function. The piece of code that plots the reference point looks like this:
So, there is no way to change anything else about the point than its
cex
value. Since the change is pretty minor, we could modify the function to addrefcol
andrefpch
arguments for the color and symbol shape of the reference.Created on 2023-01-20 by the reprex package (v2.0.1)