我正在使用包taylor.diagram
中的功能,plotrix
例如
obs = runif(100,1,100)
mod1 = runif(100,1,100)
mod2 = runif(100,1,100)
mod3 = runif(100,1,100)
taylor.diagram(obs,mod1)
taylor.diagram(obs,mod2,add=TRUE)
taylor.diagram(obs,mod3,add=TRUE)
在传统的泰勒图中没有偏差,但在他的论文中(Taylor, 2001, KE Summarizing multiple aspect of model performance in a single diagram Taylor JGR, 106, 7183-7192)泰勒说
"Although the diagram has been designed to convey information about centered pattern differences it is also possible to indicate differences in overall means (i.e., the bias). This can be done on the diagram by attaching to each plotted point a line segment drawn at a right angle to the straight line defined by the point and the reference point. If the length of the attached line segment is equal to the bias, then the distance from the reference point to the end of the line segment will be equal to the total (uncentered) RMS error"
我承认我不知道从哪里开始尝试这样做。有没有人成功地在情节上添加了这些信息?