gpt4 book ai didi

r - 是否可以在 ggplot2 中使用 facet_grid() 仅在一个子图中显示 annotation_logtics()?

转载 作者:行者123 更新时间:2023-12-04 10:38:46 24 4
gpt4 key购买 nike

我正在使用以下代码在 ggplot2 中使用 facet_grid() 创建一个包含三个子图的图:

day <- c('5-Aug', '5-Aug','5-Aug','10-Aug','10-Aug','10-Aug','17-Aug','17-Aug','17-Aug')
station <- c(1:3,1:3,1:3)
Mean <- c(382, 1017, 1519, 698, 5398, 2458, 346, 5722, 6253)
StErr<- c(83, 100, 73, 284, 3417, 689, 53, 1796, 732)
df <- data.frame(day,station,Mean,StErr)

library(ggplot2)
library(scales)
ggplot(df, aes(x=station, y=Mean)) +
geom_errorbar(aes(ymin=Mean-StErr, ymax=Mean+StErr), colour="black", width=.1) +
geom_point(size=2)+
xlab(NULL) +
ylab(expression(paste('Copepods,'~'#/m'^3))) +
theme_bw() +
theme(
panel.grid.major = element_blank(),
panel.grid.minor = element_blank()
) +
scale_x_continuous(expand=c(.3,0), breaks=c(1:3), labels=c("In", "FL", "Off")) +
annotation_logticks(sides = "l") +
scale_y_log10(limit=c(100,10000)) +
theme(axis.text.x=element_text(size=12)) +
theme(axis.text.y=element_text(size=12)) +
facet_grid(.~day)

但是,我使用 annotation_logticks() 创建的对数轴刻度出现在所有三个子图中。 问题:有谁知道如何控制 facet_grid() annotation_logticks() 中的哪些子图出现?

我在代码中添加了数据,并希望这是一种更可接受和更有用的方式来包含示例数据。我将此代码复制到一个新的 R session 中,它似乎符合我的预期。非常感谢您提供有用的链接!

最佳答案

目前功能annotation_logticks硬编码 data创建的图层中的对象。

您可以创建自己的函数来传递 data.frame包含要添加注释的分面变量和级别

add_logticks  <- function (base = 10, sides = "bl", scaled = TRUE, 
short = unit(0.1, "cm"), mid = unit(0.2, "cm"), long = unit(0.3, "cm"),
colour = "black", size = 0.5, linetype = 1, alpha = 1, color = NULL,
data =data.frame(x = NA),... ) {
if (!is.null(color))
colour <- color
layer(geom = "logticks", geom_params = list(base = base,
sides = sides, raw = raw, scaled = scaled, short = short,
mid = mid, long = long, colour = colour, size = size,
linetype = linetype, alpha = alpha, ...),
stat = "identity", data =data , mapping = NULL, inherit.aes = FALSE,
show_guide = FALSE)
}
# The plot without logticks
overall <- ggplot(df, aes(x=station, y=Mean)) +
geom_errorbar(aes(ymin=Mean-StErr, ymax=Mean+StErr), colour="black", width=.1) +
geom_point(size=2)+
xlab(NULL) +
ylab(expression(paste('Copepods,'~'#/m'^3))) +
theme_bw() +
theme(
panel.grid.major = element_blank(),
panel.grid.minor = element_blank()
) +
scale_x_continuous(expand=c(.3,0), breaks=c(1:3), labels=c("In", "FL", "Off")) +
scale_y_log10(limit=c(100,10000)) +
theme(axis.text.x=element_text(size=12)) +
theme(axis.text.y=element_text(size=12)) +
facet_grid(.~day)

overall + add_logticks(side = 'l', data = data.frame(x= NA, day = '5-Aug'))

enter image description here

关于r - 是否可以在 ggplot2 中使用 facet_grid() 仅在一个子图中显示 annotation_logtics()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20128582/

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