使用facet_trelliscope而不定义轴限制

时间:2017-08-09 16:25:06

标签: r ggplot2

使用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定义轴限制?

1 个答案:

答案 0 :(得分:1)

非常感谢它确实是一个包错误。如果有人在将来看到错误,只需删除并重新安装ggp​​lot2。