|
DATA MINING
Desktop Survival Guide by Graham Williams |
|
|||
Basic Histogram |
A histogram illustrates the distribution of values. The following example is the most basic of histograms.
pdf("graphics/rplot-hist.pdf")
hist(rnorm(200))
dev.off()
|