跳转到内容

R 编程/图形语法

来自维基教科书,开放的书籍,开放的世界

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
华夏公益教科书