作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 ggplot,有没有办法在同一个图上绘制多个函数?我想使用文本文件中的参数作为函数的参数,并将它们叠加在同一个图上。
我明白 this但如果我循环,我不知道如何将可视化函数添加在一起。
最佳答案
这是哈德利想法的实现。
library(ggplot2)
funcs <- list(log,function(x) x,function(x) x*log(x),function(x) x^2, exp)
cols <-heat.colors(5,1)
p <-ggplot()+xlim(c(1,10))+ylim(c(1,10))
for(i in 1:length(funcs))
p <- p + stat_function(aes(y=0),fun = funcs[[i]], colour=cols[i])
print(p)
关于r - 如何在 R 中绘制多个函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2237600/
我是一名优秀的程序员,十分优秀!