gpt4 book ai didi

r - bquote 在 ggplot2 2.1 版的 facet_grid 标签中不起作用

转载 作者:行者123 更新时间:2023-12-04 18:03:24 26 4
gpt4 key购买 nike

我有以下代码在 ggplot2 的一些旧的 pre-2.1 版本中完美运行:

dd <-
structure(list(Dataset = structure(c(1L, 1L, 1L, 1L, 1L, 1L), .Label = c("train",
"validation"), class = "factor"), Iterations = c(4L, 2L, 3L,
4L, 1L, 3L), L1 = c(1e-07, 1e-07, 1e-07, 1e-06, 1e-07, 1e-06),
L2 = c(1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05), Accuracy = c(0.2079478,
0.2079829, 0.2081201, 0.2086698, 0.2091378, 0.2093453), Loss = c(0.4468469,
0.446877, 0.4472973, 0.4485992, 0.4496757, 0.4499354)), .Names = c("Dataset",
"Iterations", "L1", "L2", "Accuracy", "Loss"), row.names = c(NA,
6L), class = "data.frame")

labelAxis <- function(i) {
function(values) {
sapply(values, function(x) { bquote(lambda[.(i)]==10^.(round(log10(x)))) })
}
}

ggplot(dd, aes(x=Iterations, y=Loss, color=Dataset)) +
facet_grid(. ~ L1 + L2, scales="fixed",
labeller=labeller(L1=labelAxis(1), L2=labelAxis(2), keep.as.numeric=T)) +
geom_line()

现在 ggplot2 弃用了 labeller() keep.as.numeric=...参数,而且更糟糕的是,对于上面的代码,它不再产生很好的标签数学渲染。有谁知道如何解决这个问题?

最佳答案

好吧,我想我已经想通了。编辑构面标签的新方法是使用 label_bquote() , 像这样:

ggplot(dd, aes(x=Iterations, y=Loss, color=Dataset)) +
facet_grid(. ~ L1 + L2, scales="fixed", labeller=label_bquote(
cols={lambda[1]==10^.(round(log10(L1)))}*", "*lambda[2]==10^.(round(log10(L2))))) +
geom_line()

注意看似随意的一对花括号。这是一个 R 问题。如果没有这些大括号,R 解析器会在第二个 == 上窒息表达式中的运算符。

关于r - bquote 在 ggplot2 2.1 版的 facet_grid 标签中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37847931/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com