我尝试在使用facet_wrap时组合不同的y轴,但我希望所有y轴基于该比例的最小值和最大值精确地具有3个中断,因此为0,中点和最大值。它适用于构面网格上的某些图,但不是全部。
这是当前代码:
# data table, in long format
dt = structure(list(Grp = c(rep("GroupA",12),rep("GroupB",12),rep("GroupC",12),rep("GroupD",12)), Type = c(rep(c(rep("Type1",5),rep("Type2",7)),4)), XVal = c(2L, 3L, 4L, 5L, 6L,
1L, 2L, 3L, 4L, 5L, 6L, 7L, 2L, 3L, 4L, 5L, 6L, 1L, 2L, 3L, 4L,
5L, 6L, 7L, 2L, 3L, 4L, 5L, 6L, 1L, 2L, 3L, 4L, 5L, 6L, 7L, 2L,
3L, 4L, 5L, 6L, 1L, 2L, 3L, 4L, 5L, 6L, 7L), YVal = c(0.2417, 0.2156, 0.264,
0.2805, 0.2414, 0.2882, 0.0825, 0.0561, 0.1443, 0.1074, 0.0252,
1e-04, 0.0186, 0.0157, 0.0473, 0.13, 0.1205, 0.0689, 0.1506,
0.2945, 0.3098, 0.1474, 0.3408, 0.1327, 0.0102, 0.0033, 0.0021,
2e-04, 0, 0.0124, 0.0053, 0.0039, 0.0014, 4e-04, 0, 0, 0.0574,
0.1003, 0.0687, 0.0976, 0.1067, 0.1161, 0.0964, 0.0517, 0.0658,
0.0654, 0.0241, 0.0021)), row.names = c(NA,-48L), class = "data.frame")
# first created a function to define three breaks, and round to 2 decimal points
my_breaks <- function(y) {round(seq(0, max(y),length.out = 3),2)}
# use that function in the 'scale_y_continuous' while specifying that the y scale is "free" in facet_wrap
ggplot(dt,aes(x=XVal,y=YVal)) + geom_line(aes(color=Type)) +
facet_wrap(~Grp,scales = "free_y", ncol = 2) +
scale_y_continuous(breaks = my_breaks)
休息是我希望A和D组而不是B&C所需要的。任何帮助将不胜感激。
答案 0 :(得分:0)
似乎与舍入如何影响my_breaks函数的结果有关。如果您删除了回合,那么您的功能将如下所示:
my_breaks <- function(y) {seq(0, max(y),length.out = 3)}
每个构面都有三个均匀间隔的中断。现在我们可以格式化图中的数字:
ggplot(dt,aes(x=XVal,y=YVal)) + geom_line(aes(color=Type)) +
facet_wrap(~Grp,scales = "free_y", ncol = 2) +
scale_y_continuous(breaks = my_breaks,
labels = function(x){round(x,2)})
但是请注意,在C组中,标签最终没有意义,因为两个中断值(0.013和0.006)均舍入为0.01。