使用facet_trelliscope
中的trelliscopejs
即可:
library(trelliscopejs)
library(ggplot2)
x <- 1:10
y <- 1:10
group <- rep(c("A","B"),5)
df <- data.frame(group, x, y)
ggplot(df, aes(x, y)) + geom_point() +
xlim(0, 10) + ylim(0, 10) +
facet_trelliscope(~group)
但这并不是:
ggplot(df, aes(x, y)) + geom_point() +
facet_trelliscope(~group)
它引发了这个错误:
Error in scale_fn() : could not find function "scale_fn"
我的问题是,是否需要为facet_trelliscope定义轴限制?
答案 0 :(得分:1)
非常感谢它确实是一个包错误。如果有人在将来看到错误,只需删除并重新安装ggplot2。