|
|
| Subject: | XploRe Application Guide |
| See XploRe: |
| Quantlet: | ls03 | |
| Description: | estimation of stacklos data set by OLS | |
| Download: | ls03.xpl |
library("metrics")
;
z = read("stacklos")
;
x = matrix(rows(z))~z[,2:4]
y = z[,5]
;
b = gls(x,y)
b
| Subject: | XploRe Application Guide |
| See XploRe: |