R 编程/图形语法
外观
< R 编程
本节是存根。 您可以通过 扩展它 来帮助 Wikibooks。 |
Hadley Wickham 开发了 **ggplot2**,一个根据 *图形语法* 原则设计的图形库。
我们使用 qplot()
以及选项 stat=function
# Plot the quadratic function
square <- function(x){
x^2
}
mode(square)
qplot(c(0, 2), stat = "function", fun = square, geom = "line")
以下是使用正弦函数的另一个示例
# plot the sinus functon
qplot(c(-10, 10), stat = "function", fun = sin, geom = "line")
- 莱兰·威尔金森,图形语法(统计与计算),施普林格出版社,2005
- 哈德利·威克汉姆,ggplot2:数据分析的优雅图形,用R!,施普林格出版社,2009