geom_bar + geom_line: with different y-axis scale?
问题 Is there any way to plot geom_bar with geom_line like the following chart. I have come up with the two separate charts. How to combine them with two different axes on the left and right sides respectively. library(ggplot2) temp = data.frame(Product=as.factor(c("A","B","C")), N = c(17100,17533,6756), n = c(5,13,11), rate = c(0.0003,0.0007,0.0016), labels = c(".03%",".07%",".16%")) p1 = ggplot(data = temp, aes(x=Product,y=N))+ geom_bar(stat="identity",fill="#F8766D")+geom_text(aes(label=n,col=