| Subject: | XploRe: Learning Guide |
| See XploRe: |
| Quantlet: | graph36 | |
| Description: | Q-Q plot. | |
| Download: | graph36.xpl |
library("plot") ; loads library plot
data = read ("bostonh") ; reads Boston Housing data
x = data[,13] ; selects 13th column
gr = grqqn(x) ; generates a qq plot
plot(gr) ; plots the qq plot
| Subject: | XploRe: Learning Guide |
| See XploRe: |