在 ggplot2 中将 abline 添加到 facet_zoom
Posted
技术标签:
【中文标题】在 ggplot2 中将 abline 添加到 facet_zoom【英文标题】:Add abline to facet_zoom in ggplot2 【发布时间】:2021-09-25 02:21:01 【问题描述】:我有一个看起来像这样的数据集
data <- data.frame(x = log(runif(100, min = 1, max = 10)),
y = log(runif(100,min = 1, max = 10)))
当我使用下面的代码进行绘图时,出现错误 (Error in scale_index[[i]] : subscript out of bounds
)
ggplot(data, aes(x = x, y = y))+
geom_point()+
facet_zoom(x = x >2 & x < 3, y = y >2 & y < 3)+
geom_abline(intercept = 0, slope = 1, color="black", linetype="dashed", size=0.5)
在没有 abline 的情况下它工作正常,但我真的想添加这个 abline(标识线)而不使用一些图像编辑。
我想要的是:
我也不介意让这条线出现在主情节中(在 facet_zoom 之外)。
这是我收到的错误消息(我使用的是 ggforce 0.3.3):
【问题讨论】:
您的代码对我有用。我没有得到那个错误。它有一条线。 这里也一样。主情节也有这条线。 也在“我的电脑上”工作过。 这里也使用ggforce_0.3.3
和ggplot2_3.3.3
好的。那很奇怪。我正在使用 ggfoce_0.3.3 和 ggplot2_3.3.4 并且没有工作。我将 ggplot 更新为 3.3.5,现在它可以工作了。谢谢大家!
【参考方案1】:
解决了。
显然是兼容性问题。我使用的是 ggplot2 v3.3.4。将其更新到 v3.3.5 解决了这个问题。
【讨论】:
以上是关于在 ggplot2 中将 abline 添加到 facet_zoom的主要内容,如果未能解决你的问题,请参考以下文章