How do you set different scale limits for different facets?

前端 未结 2 1256
不思量自难忘°
不思量自难忘° 2020-12-10 10:25

Some sample data:

dfr <- data.frame(
  x = rep.int(1:10, 2),
  y = runif(20),
  g = factor(rep(letters[1:2], each = 10))
)

A simple scat

2条回答
  •  独厮守ぢ
    2020-12-10 11:05

    I don't think this is possible yet in ggplot2. This discussion from January suggests the issue is under consideration.

提交回复
热议问题