3

plotrix包有一个函数叫做绘制taylor.diagram两个向量——一个代表数据,另一个代表模型输出。

这是一个例子:

require(plotrix)
set.seed(10)
data  <- sort(runif(100, 8,12))
model <- sort(rnorm(100, 10, 4))
taylor.diagram(data, model)

在这个例子中,我想在改进模型后更新绘图:

model2 <- sort(rnorm(100, 10,2))
taylor.diagram(data, model2, add = TRUE)

要产生这个:

在此处输入图像描述

如何添加“模型 1”和“模型 2”等标签来识别这些点?(更新:标签位置由模型值确定,而不是事后完成)

4

3 回答 3

4

第三种解决方案是创建taylor.diagram包含文本标签的函数的修改版本。在这种情况下,所要做的就是添加一个参数,比如说text,然后在调用points原始函数之后(右大括号前 2 行)添加text(sd.f * R, sd.f * sin(acos(R)), labels=text, pos=3).

taylor.diagram.modified <- function (ref, model, add = FALSE, col = "red", 
                                    pch = 19, pos.cor = TRUE, xlab = "", ylab = "", 
                                    main = "Taylor Diagram", show.gamma = TRUE, 
                                    ngamma = 3, gamma.col = 8, sd.arcs = 0, ref.sd = FALSE, 
                                    grad.corr.lines = c(0.2, 0.4, 0.6, 0.8, 0.9), pcex = 1, 
                                    cex.axis = 1, normalize = FALSE, mar = c(5, 4, 6, 6),
                                    text, ...) #the added parameter
{
    grad.corr.full <- c(0, 0.2, 0.4, 0.6, 0.8, 0.9, 0.95, 0.99,1)
    R <- cor(ref, model, use = "pairwise")
    sd.r <- sd(ref)
    sd.f <- sd(model)
    if (normalize) {

    ... #I didn't copy here the full function because it's quite long: to obtain it
    ... #simply call `taylor.diagram` in the console or `edit(taylor.diagram)`.

            }
            S <- (2 * (1 + R))/(sd.f + (1/sd.f))^2
        }
    }
    points(sd.f * R, sd.f * sin(acos(R)), pch = pch, col = col, 
           cex = pcex)
    text(sd.f * R, sd.f * sin(acos(R)),  #the line to add
         labels=text, cex = pcex, pos=3) #You can change the pos argument to your liking
    invisible(oldpar)
}

然后只需在参数中提供一个标签名称text

require(plotrix)
set.seed(10)
data  <- sort(runif(100, 8,12))
model <- sort(rnorm(100, 10, 4))
taylor.diagram.modified(data, model, text="Model 1")
model2 <- sort(rnorm(100, 10,2))
taylor.diagram.modified(data, model2, add = TRUE, text="Model 2")

在此处输入图像描述

于 2013-03-11T09:25:03.927 回答
1

这里有两种方法

  1. example(taylor.diagram)显示了在右上角 (at 1.5*sd(data), 1.5*sd(data)) 放置图例的一种不错的方法,但这需要两个点使用不同的颜色。

  2. 另一种选择是根据原始Taylor 2001 参考中的方程式计算位置- 或将它们从源代码复制到taylor.diagram函数中,靠近

    dy <- 1.1 # text offset coefficient
    sd.f <- sd(model)
    R <- cor(data, model, use = 'pairwise')
    x <- sd.f * R
    y <- sd.f * sin(acos(R)) + dy * sd.f
    text(x, y, "Model")
    

    您需要为每个模型计算这些,但只有模型输入和标签会改变。您可能还希望保持偏移相同。

于 2013-03-01T16:44:21.597 回答
0

与在基本图形中标记所有内容的方式相同,使用text

text(1.5,0.5,labels = "Model2")
text(3.5,1,labels = "Model1")

在此处输入图像描述

于 2013-02-28T23:27:49.653 回答