本篇内容主要包含常用的可视化图的R实现代码及效果。
Histogram(直方图)
base:hist()
1 | library(DMwR) |
## [1] 56 57
1 | par(mfrow = c(1,1)) |
1 | library(lattice) |
箱线图(boxplot)
lattice: bwplot()
1 | library(ggplot2) |
Hmisc:bwplot()
1 | library(Hmisc) |
可视化参考书籍
- Statistics for Technology, Chatfield(1983)。简单很好的统计书籍。例子简单能说明问题
- Introductry Statistics with R, Dalgaard(2002)
- Visualizing Data, Cleveland(1993), 物有所值
- The Element of Graphing Data, Cleveland(1995), 更正式
- Data Visualization, Chen(2008)
- R Graphics, Murrell(2006), R 软件绘图