y1 = c(830.6225, 1051.7180, 1084.5102, 1089.1885, 1184.4557, 969.8625, 881.7043, 1047.6092, 860.3845)
y2 = c(11167.21, 11765.34, 12897.90, 13002.88, 14459.16, 14272.08, 14400.74, 13573.05, 13198.24)
x = c(0e+00, 1e-02, 1e-01, 5e-01, 1e+00, 2e+00, 5e+00, 1e+01, 1e+02)
data = data.frame(y1 = y1, y2 = y2, x = x)
ggplot(data=data,aes(x = x ,y=y1))+
geom_line(aes(y=y1), colour="red")+
geom_line(data = data,aes(x=x,y=y2),colour="blue")
I want to have a first y-axis range for the red curve and for the second y-axis with the range blue line. Could you please give me hint?