我看到很多关于如何自定义图例的问题,但我什至无法自定义图例。我想有一个图例来解释黑线是二次的,绿线是三次的。
library(ggplot2)
myfun1 <- function(x) x^2
myfun2 <- function(x) x^3
myplot <- ggplot(data = data.frame(x = 1:5, y= 1:5), aes(x=x, y=y)) +
stat_function(fun = myfun1, color="green") +
stat_function(fun = myfun2, color="black")