我的目标是在ggplot2中绘制带有s曲线的二次函数,如图像HERE
这是我到目前为止所得到的但线条没有对齐!我的意思是它与seq(0,2)有关。非常感谢您的评论!
ggplot(data.frame(x = seq(0, 2)), aes(x)) +
stat_function(fun=function(x)x^2, geom="line")
stat_function(fun = function(x) 1/(1 + exp(-x)), geom = "line")
答案 0 :(得分:0)
ggplot(data.frame(x = seq(0, 2)), aes(x)) +
stat_function(fun=function(x)x^2, geom="line") +
stat_function(fun = function(x) 1/(1 + exp(-x)), geom = "line")
我想你忘记了加号。这个对我有用。