| Subject: | XploRe: Learning Guide |
| See XploRe: |
| Quantlet: | graph39 | |
| Description: | Histogram with different binwidth and origin. | |
| Download: | graph39.xpl |
library("plot") ; loads library plot
data = read ("bostonh") ; reads Boston Housing data
x = data[,14] ; selects 14th column
gr = grhist(x,1,0.5) ; generates histogram with
; binwidth 1 and origin 0.5
plot(gr) ; plots histogram
| Subject: | XploRe: Learning Guide |
| See XploRe: |