I have not used plotrix before but I am trying to create a taylor diagram to show the SD and RMS errors between reanalysis wind speed data and modelled wind speed projections from RCM RCA4 forced by 5 different GCM.
The script I am using can be seen below (edited: reproducible data now in place). I am not sure what I am doing wrong but as you can see from the attached image multiple points are being plotted for each modelled dataset, rather than a singular point...Taylor diagram test plot
Any advice or guidance on what I am doing wrong and how to correct it would be much appreciated.
Thanks in advance.
library(datasets)
library(ncdf4)
library(plotrix)
data <- volcano
taylor.diagram(volcano,volcano,add=FALSE,col="red",pch=4,pos.cor=TRUE,xlab="MERRA SD (Normalised)",ylab="RCA4 runs SD (normalised)",main="Taylor Diagram",show.gamma=TRUE,ngamma=3,sd.arcs=1,ref.sd=TRUE,grad.corr.lines=c(0.2,0.4,0.6,0.8,0.9),pcex=1,cex.axis=1,normalize=TRUE,mar=c(5,4,6,6),lwd=10,font=5,lty=3)
lpos<-1.5*sd(windMERRA)
legend(1.5,1.5,cex=1.2,pt.cex=1.2,legend=c("volcano"),pch=4,col=c("red"))