Different x and y axis scales in multifaceted scatter ggplot2
问题 I have used lemon package with ggplot2 for plotting multifaceted scatter plot with regression and confidence interval line using the following code library(tidyverse) library(lemon) #Plotting ggplot(data_calibration, aes(Observed,Predicted))+ geom_point(color="black",alpha = 1/3) + facet_rep_grid(Station ~ Method, scales="free", repeat.tick.labels = "all")+ xlab("Measured") + ylab("Predicted")+ theme_bw()+ geom_smooth(method="lm") I want to have both x and y-axis scales to be free. But I am