Cómo agregar leyenda a geom_smooth en ggplot en R

Tiene un problema de agregar leyenda a diferentes suaves en ggplot.

    library(splines)
    library(ggplot2)
    temp <- data.frame(x = rnorm(200, 20, 15), y = rnorm(200, 30, 8))

    ggplot(data = temp, aes(x, y)) + geom_point() + 
      geom_smooth(method = 'lm', formula = y ~ bs(x, df=5, intercept = T), col='blue') + 
      geom_smooth(method = 'lm', formula = y ~ ns(x, df=2, intercept = T), col='red')

Tengo dos splines: rojo y azul. ¿Cómo puedo agregar una leyenda para ellos?

Respuestas a la pregunta(1)

Su respuesta a la pregunta