| Subject: | XploRe: Learning Guide |
| See XploRe: |
| Quantlet: | graph34 | |
| Description: | Rescaled dotplot. | |
| Download: | graph34.xpl |
library("plot") ; loads library plot
data = read ("bostonh") ; reads Boston Housing data
x = data[,4] ; selects 14th column
gr = grbar(x) ; generates a bar chart
gr = setmask(gr, "line", "medium") ; changes line thickness
plot(gr) ; plots bar chart
| Subject: | XploRe: Learning Guide |
| See XploRe: |