【发布时间】:2021-12-26 20:55:57
【问题描述】:
假设我有以下数据:
test = read.table(text = 'condition1 condition2 estimate std_error name
a x .466 .09 name_1
a y .343 .131 name_1
b x .466 .09 name_1
b y .343 .131 name_1
a x .466 .09 name_2
a y .343 .131 name_2
b x .466 .09 name_2
b y .343 .131 name_2', header = T, stringsAsFactors = T)
ggplot(data = test, aes(x = estimate, y = condition1, fill = condition2, group = condition2)) +
geom_point(color = 'black') +
geom_linerange(aes(xmin = estimate - std_error,
xmax = estimate + std_error), color = 'black') +
ylab(NULL) +
facet_grid(name ~ .,
scales = "free_y",
space = "free_y",
switch = 'y')
我试图将x 和y 行分离为b 和a 条件within 给定方面(name_1 和name_2)中的单独行。但是我的代码将这两行作为相同的 y 值,所以它们是重叠的。分隔线的最佳方法是什么?
【问题讨论】: