gpt4 book ai didi

r - 带有自定义刻度的 GGplot 自定义比例转换

转载 作者:行者123 更新时间:2023-12-03 16:42:25 24 4
gpt4 key购买 nike

我正在尝试使用自定义比例/轴转换,如下所示:

library(ggplot2)
library(scales)

dat <- data.frame(
time.tot = c(407.17, 168.83, 127.8, 108.88, 69.04, 68.5, 59.76, 407.17,
168.83, 127.8, 108.88, 69.04, 68.5, 59.76, 407.17, 168.83, 127.8,
108.88, 69.04, 68.5, 59.76),
error = c(0, 0.01, 0.05, 0.1, 0.5, 0.7, 1, 1.91e-06, 0.00229, 0.00884,
0.0172, 0.128, 0.128, 0.22, 1.43e-08, 0.000337, 0.00121, 0.00221,
0.0123, 0.0123, 0.0213, 0, 0.01, 0.05, 0.1, 0.5, 0.7, 1, 1.91e-06,
0.00229, 0.00884, 0.0172, 0.128, 0.128, 0.22, 1.43e-08, 0.000337,
0.00121, 0.00221, 0.0123, 0.0123, 0.0213),
type = rep(c("A", "B", "C"), each=7))

eps <- 1e-8
tn <- trans_new("logpeps",
function(x) log(x+eps),
function(y) exp(y)-eps,
domain=c(0, Inf),
breaks=c(0, 0.1, 1))

ggplot(dat, aes(x=time.tot, y=error, color=type)) +
geom_line() + geom_point() + coord_trans(y = tn)

enter image description here

如您所见,y 轴确实由我指定的函数 y=log(x+eps) 进行了转换。 . breaks争论虽然没有任何影响。我确定我指定错了,但我无法从文档中弄清楚如何使其工作。有什么建议?

我还想知道如何/是否“修复”曲线 - 看起来它们是以原始比例绘制的,然后使用我的自定义 tn 进行转换然后。

最佳答案

您可能需要直接在 y 轴上设置比例:

ggplot(dat, aes(x=time.tot, y=error, color=type)) +
geom_line() + geom_point() + coord_trans(y = tn)
+ scale_y_continuous(breaks = c(0,0.1,1))

此外,非直线是 coord_trans 的预期行为.来自帮助:“coord_trans 与比例变换不同,因为它发生在统计变换之后,并且会影响几何图形的视觉外观 - 不能保证直线会继续保持直线。”

相反,请尝试:
b <- 10^-c(Inf, 8:0)
ggplot(dat, aes(x=time.tot, y=error, color=type)) +
geom_line() + geom_point() + scale_y_continuous(breaks = b, labels=b, trans = tn)

enter image description here

关于r - 带有自定义刻度的 GGplot 自定义比例转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38333603/

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