2017-02-21 5 views
1

簡単な例のリスト:Draw関数は - 関数描画のパラメータ

p <- ggplot(data = data.frame(x = 0), mapping = aes(x = x)) 
p + stat_function(fun = function(x) x^2 + 1*2) 

enter image description here

はggplotにプロットコード内のパラメータのリストを追加することが可能ですか? これは何か?

fun1 <- function(x) x^2 + a*b 
p <- ggplot(data = data.frame(x = 0), mapping = aes(x = x)) 
p + stat_function(fun = fun1, par=list(a=1, b=2)) + xlim(-5,5) 

答えて

3

このようにしますか?

fun1 <- function(x,a,b) a*x^2 + b 
p <- ggplot(data = data.frame(x = 0), mapping = aes(x = x)) 
p + 
    stat_function(fun = fun1, args=list(a=1, b=2)) + 
    stat_function(fun = fun1, args=list(a=2, b=1), col='red') + 
    xlim(-5,5) 

enter image description here

+1

その通り!ありがとう! – Juanchi