Description Usage Format Source References Examples
The data are from a national sample of 6000 households with a male head earning less than USD 15,000 annually in 1966. The data were clasified into 39 demographic groups for analysis. The study was undertaken in the context of proposals for a guaranteed annual wage (negative income tax). At issue was the response of labor supply (average hours) to increasing hourly wages. The study was undertaken to estimate this response from available data.
1 |
A data frame with 39 observations on the following 10 variables:
HRSAverage hours worked during the year
RATEAverage hourly wage (USD)
ERSPAverage yearly earnings of spouse (USD)
ERNOAverage yearly earnings of other family members (USD)
NEINAverage yearly non-earned income
ASSETAverage family asset holdings (Bank account, etc.) (USD)
AGEAverage age of respondent
DEPAverage number of dependents
RACEPercent of white respondents
SCHOOLAverage highest grade of school completed
DASL library http://lib.stat.cmu.edu/DASL/Datafiles/wagesdat.html
D.H. Greenberg and M. Kosters, (1970). Income Guarantees and the Working Poor, The Rand Corporation.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | data(wages)
names(wages)
x <- as.matrix(wages)
ok <- is.finite(x %*% rep(1, ncol(x)))
wages <- wages[ok, , drop = FALSE]
wages.lm <- lm(HRS~AGE, data=wages)
plot(HRS ~ AGE, data = wages)
abline(wages.lm)
class(wages.lm)
names(wages.lm)
summary(wages.lm)
wages.mm <- lmrob(HRS~AGE, data=wages)
plot(HRS ~ AGE, data = wages)
abline(wages.mm)
class(wages.mm)
names(wages.mm)
summary(wages.mm)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.