data(longley)
GNP.deflator: | GNP implicit price deflator (1954=100) |
GNP: | Gross National Producr. |
Unemployed: | number of unemployed |
Armed.Forces: | number of .. in the armed forces |
Population: | `noninstitutionalized' population |
>= 14 years of age. | |
Year: | the year (time). |
Employed: | number of people employed. |
The regression lm(Employed ~ .)
is known to be highly
collinear.
# give the data set in the form it is used in S-plus: data(longley) longley.x <- data.matrix(longley[, 1:6]) longley.y <- longley[, "Employed"]