有没有一种方法可以使用 ggplot 在数据之上覆盖数学函数?
## add ggplot2
library(ggplot2)
# function
eq = function(x){x*x}
# Data
x = (1:50)
y = eq(x)
# Make plot object
p = qplot(
x, y,
xlab = "X-axis",
ylab = "Y-axis",
)
# Plot Equation
c = curve(eq)
# Combine data and function
p + c #?
在这种情况下,我的数据是使用该函数生成的,但我想了解如何curve()
与 ggplot 一起使用。