0
我意識到類似的問題已經被問到。例如,請考慮這裏的一個:Equivalent of curve() for ggplot。是否有可能以某種方式使用group
來繪製下面的函數,或者我將不得不爲a
和b
的每個實例編寫stat_function
?ggplot曲線()的靈活等價
myfun <- function(x, i) {
sin(a[i] * x) + log(b[i] * x)
}
ggplot(data.frame(x=c(0, 10)), aes(x)) +
stat_function(fun = myfun(x, 1)) +
stat_function(fun = myfun(x, 2)) ...
如果a
和b
是大嗎?以上看起來不雅。