9
使用ggplot在數據頂部覆蓋數學函數嗎?在R中的數據點頂部繪製函數
## 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。