0% found this document useful (0 votes)
35 views7 pages

Chapter 3 Homework on Discrimination and Education

The document provides a summary of homework questions from Chapter 3. It includes: 1) Analysis of discrimination data looking at average black population proportion and income, models of soda price, and effect of controlling for income. 2) Analysis of education and wage data, finding 14 levels of education and that 34.4% completed only 12th grade. 3) Positive correlation between log income and poverty proportion as expected, with inclusion of both in regression complementing the model.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views7 pages

Chapter 3 Homework on Discrimination and Education

The document provides a summary of homework questions from Chapter 3. It includes: 1) Analysis of discrimination data looking at average black population proportion and income, models of soda price, and effect of controlling for income. 2) Analysis of education and wage data, finding 14 levels of education and that 34.4% completed only 12th grade. 3) Positive correlation between log income and poverty proportion as expected, with inclusion of both in regression complementing the model.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

1/3/2021 Chapter 3 Homework (Take 2)

Chapter 3 Homework (Take 2)


Grant Lawson
October 15, 2018
# Let's load some libraries
packages <- c("lubridate","fpp2", "dplyr", "ggplot2", "ggthemes", "ggrepel", "zoo", "xts","plyr", "tidyr", "tidyverse", "Tmisc", "[Link]", "reshap
e2", "ggpubr")
lapply(packages, library, [Link] = T)

# Pathing data
[Link] <-"C:/Users/lawso/OneDrive/Desktop/CWU Quarterly Schedule/2018-19/Fall Quarter 18/ECON 424 - Metrics/Data/"

Homework Questions:
. C8 (page 99) . C10 parts (i) through (iii) (page 100) o Parts (iv) through (vi) are optional, but I’ll give a bit of extra credit if you do
them.

C8
Use the data in DISCRIM to answer this question. These are zip code-level data on prices for various items at fast-food
restaurants, along with characteristics of the zip code population, in New Jersey and Pennsylvania. The idea is to see whether
fast-food restaurants charge higher prices in areas with a larger concentration of blacks.

(i) Find the average values of prpblck and income in the sample, along with their standard deviations. What are the units of
measurement of prpblck and income?

discrim <- paste([Link], "[Link]", sep="")


load(discrim)
discrim <- data

[Link](
"Mean" = c(
format((mean(discrim$prpblck, [Link] = T)), scientific = F),
[Link](mean(discrim$income, [Link] = T))),
"SD" = c(
format((sd(discrim$prpblck, [Link] = T)), scientific = F),
[Link](sd(discrim$income, [Link] = T))),
[Link] = c("prpblck", "income")
)

## Mean SD
## prpblck 0.1134864 0.1824165
## income 47053 13179

The averages for “prpblck” and “income” are 0.113 and 47,053, respectively. The standard deviations are likewise, 0.1824 and
13,179.29, respectively. It is apparent that prpblck represents a proportion of the black population, while income is represented in dollar
terms.

(ii) Consider a model to explain the price of soda, psoda, in terms of the proportion of the population that is black and median
income: psoda = b0 + b1prpblck + b2income + u. Estimate this model by OLS and report the results in equation form,
including the sample size and R-squared. (Do not use scientific notation when reporting the estimates.) Interpret the
coefficient on prpblck. Do you think it is economically large?

aapl <- lm(psoda~prpblck+income, data = discrim)


summary(aapl)

[Link] 1/7
1/3/2021 Chapter 3 Homework (Take 2)

##
## Call:
## lm(formula = psoda ~ prpblck + income, data = discrim)
##
## Residuals:
## Min 1Q Median 3Q Max
## -0.29401 -0.05242 0.00333 0.04231 0.44322
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 9.563e-01 1.899e-02 50.354 < 2e-16 ***
## prpblck 1.150e-01 2.600e-02 4.423 1.26e-05 ***
## income 1.603e-06 3.618e-07 4.430 1.22e-05 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 0.08611 on 398 degrees of freedom
## (9 observations deleted due to missingness)
## Multiple R-squared: 0.06422, Adjusted R-squared: 0.05952
## F-statistic: 13.66 on 2 and 398 DF, p-value: 1.835e-06

The resulting regression is [Link] = (0.956) + (0.115)prpblck + (0.0000016). The optimal sample size is 399 observations (indicated
by the 398 degrees of freedom and 9 missing observations) and the adjusted R^2 is 0.595. The coefficient on prpblck indicates that, all
things being equal, if prpblck increases by 10% the price of soda will increase by approximately 1.2 cents, which is not economically
significant.

(iii) Compare the estimate from part (ii) with the simple regression estimate from psoda on prpblck. Is the discrimination
effect larger or smaller when you control for income?

v <- lm(psoda~prpblck, data = discrim)


v

##
## Call:
## lm(formula = psoda ~ prpblck, data = discrim)
##
## Coefficients:
## (Intercept) prpblck
## 1.03740 0.06493

summary(v)

##
## Call:
## lm(formula = psoda ~ prpblck, data = discrim)
##
## Residuals:
## Min 1Q Median 3Q Max
## -0.30884 -0.05963 0.01135 0.03206 0.44840
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 1.03740 0.00519 199.87 < 2e-16 ***
## prpblck 0.06493 0.02396 2.71 0.00702 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 0.0881 on 399 degrees of freedom
## (9 observations deleted due to missingness)
## Multiple R-squared: 0.01808, Adjusted R-squared: 0.01561
## F-statistic: 7.345 on 1 and 399 DF, p-value: 0.007015

The estimate of the coefficient on prpblack with the simple regression is 0.065. This is lower than the prior estimate, and therefore
shows that the discrimination effect decreases when income is excluded.

[Link] 2/7
1/3/2021 Chapter 3 Homework (Take 2)
(iv) A model with a constant price elasticity with respect to income may be more appropriate. Report estimates of the model
log1psoda2 = b0 + b1prpblck + b2log1income2 + u. If prpblck increases by .20 (20 percentage points), what is the estimated
percentage change in psoda? (Hint: The answer is [Link], where you fill in the “xx.”)

lpsoda <- lm(log(psoda)~prpblck+log(income), data = discrim)


lpsoda

##
## Call:
## lm(formula = log(psoda) ~ prpblck + log(income), data = discrim)
##
## Coefficients:
## (Intercept) prpblck log(income)
## -0.79377 0.12158 0.07651

summary(lpsoda)

##
## Call:
## lm(formula = log(psoda) ~ prpblck + log(income), data = discrim)
##
## Residuals:
## Min 1Q Median 3Q Max
## -0.33563 -0.04695 0.00658 0.04334 0.35413
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) -0.79377 0.17943 -4.424 1.25e-05 ***
## prpblck 0.12158 0.02575 4.722 3.24e-06 ***
## log(income) 0.07651 0.01660 4.610 5.43e-06 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 0.0821 on 398 degrees of freedom
## (9 observations deleted due to missingness)
## Multiple R-squared: 0.06809, Adjusted R-squared: 0.06341
## F-statistic: 14.54 on 2 and 398 DF, p-value: 8.039e-07

paste( (0.2*100)*0.122, "percent increase")

## [1] "2.44 percent increase"

If “prpblck” increases by 20 percentage points, estimated psoda will increase by 2.44%

(v) Now add the variable prppov to the regression in part (iv). What happens to b^ prpblck?

sq <- lm(log(psoda)~prpblck+log(income)+prppov, data = discrim)


sq

##
## Call:
## lm(formula = log(psoda) ~ prpblck + log(income) + prppov, data = discrim)
##
## Coefficients:
## (Intercept) prpblck log(income) prppov
## -1.46333 0.07281 0.13696 0.38036

Adding prppov causes the prpblck coefficient to fall to 0.0738.

(vi) Find the correlation between log(income) and prppov. Is it roughly what you expected?

cor(log(discrim$income), discrim$prppov, method = "pearson", use = "[Link]")

[Link] 3/7
1/3/2021 Chapter 3 Homework (Take 2)

## [1] -0.838467

The correlation is approximately -0.838. This makes sense, because one would expect that declines in income would result in higher
poverty rates.

(vii) Evaluate the following statement: “Because log(income) and prppov are so highly correlated, they have no business being
in the same regression.”
Although they are highly correlated, the incorporation of both does not result in a perfect collinearity and instead compliments the model
by adding another control variable that helps to isolate the discrimination effect.

C10
Use the data in HTV to answer this question. The data set includes information on wages, education, parents’ education, and
several other variables for 1,230 working men in 1991.

(i) What is the range of the educ variable in the sample? What percentage of men completed twelfth grade but no higher
grade? Do the men or their parents have, on average, higher levels of education?

htv <- paste([Link], "[Link]", sep="")


load(htv)
htv <- data

santa <- range(htv$educ) #What is the range of the educ variable in the sample?
print(santa[2]-santa[1])

## [1] 14

claus <- count(htv$educ <= 12) # What percentage of men completed twelfth grade but no higher grade?
is <- claus[1,2]
coming <- claus[2,2]
to <- is + coming
town <- coming/to

town

## [1] 0.5674797

mean(htv$educ) #Do the men or their parents have, on average, higher levels of education?

## [1] 13.0374

(mean(htv$motheduc) + mean(htv$fatheduc))/2

## [1] 12.3126

The range of the education variable is 14 and the percentage of men who completed twelfth grade, but no higher, is 56.74%. The
average education of the men in the sample is 13.04 years, whereas the average education of their parents is 12.31; therefore, the men
on average have higher levels of education.

(ii) Estimate the regression model educ = b0 + b1motheduc + b2fatheduc + u by OLS and report the results in the usual form.
How much sample variation in educ is explained by parents’ education? Interpret the coefficient on motheduc.

aobc <- lm(educ~motheduc+fatheduc, data = htv)


aobc

[Link] 4/7
1/3/2021 Chapter 3 Homework (Take 2)

##
## Call:
## lm(formula = educ ~ motheduc + fatheduc, data = htv)
##
## Coefficients:
## (Intercept) motheduc fatheduc
## 6.9644 0.3042 0.1903

summary(aobc)

##
## Call:
## lm(formula = educ ~ motheduc + fatheduc, data = htv)
##
## Residuals:
## Min 1Q Median 3Q Max
## -6.2898 -0.9400 -0.4037 1.1239 8.1672
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 6.96435 0.31982 21.776 <2e-16 ***
## motheduc 0.30420 0.03193 9.528 <2e-16 ***
## fatheduc 0.19029 0.02228 8.539 <2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 2.042 on 1227 degrees of freedom
## Multiple R-squared: 0.2493, Adjusted R-squared: 0.248
## F-statistic: 203.7 on 2 and 1227 DF, p-value: < 2.2e-16

Approximately 24.8% of the variation in education is explained by parent’s education. The coefficient on motheduc explains that for
every annual increase in a mother’s education, her son’s education will tend to similarly increase by 0.3042 years.

(iii) Add the variable abil (a measure of cognitive ability) to the regression from part (ii), and report the results in equation
form. Does “ability” help to explain variations in education, even after controlling for parents’ education? Explain.

nflx <- lm(educ~motheduc+fatheduc+abil, data = htv)


nflx

##
## Call:
## lm(formula = educ ~ motheduc + fatheduc + abil, data = htv)
##
## Coefficients:
## (Intercept) motheduc fatheduc abil
## 8.4487 0.1891 0.1111 0.5025

summary(nflx)

[Link] 5/7
1/3/2021 Chapter 3 Homework (Take 2)

##
## Call:
## lm(formula = educ ~ motheduc + fatheduc + abil, data = htv)
##
## Residuals:
## Min 1Q Median 3Q Max
## -5.407 -1.195 -0.199 1.076 7.012
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 8.44869 0.28954 29.180 < 2e-16 ***
## motheduc 0.18913 0.02851 6.635 4.87e-11 ***
## fatheduc 0.11109 0.01988 5.586 2.85e-08 ***
## abil 0.50248 0.02572 19.538 < 2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 1.784 on 1226 degrees of freedom
## Multiple R-squared: 0.4275, Adjusted R-squared: 0.4261
## F-statistic: 305.2 on 3 and 1226 DF, p-value: < 2.2e-16

Incorporating “ability” into the model does help to explain the variation of “educ” after controlling for parents’ education, and it
increases the explanatory significance of the model to 42.61%.

(iv) (Requires calculus) Now estimate an equation where abil appears in quadratic form: educ = b0 + b1motheduc + b2fatheduc
+ b3abil + b4abil2 + u. Using the estimates b^ 3 and b^ 4, use calculus to find the value of abil, call it abil* , where educ is
minimized. (The other coefficients and values of parents’ education variables have no effect; we are holding parents’
education fixed.) Notice that abil is measured so that negative values are permissible. You might also verify that the second
derivative is positive so that you do indeed have a minimum.

[Link] <- htv$abil^2

amd <- lm(educ~motheduc+fatheduc+abil+[Link], data = htv)


amd

##
## Call:
## lm(formula = educ ~ motheduc + fatheduc + abil + [Link], data = htv)
##
## Coefficients:
## (Intercept) motheduc fatheduc abil [Link]
## 8.2402 0.1901 0.1089 0.4015 0.0506

[Link] <- [Link](amd[1])


[Link]

## coefficients
## (Intercept) 8.24022643
## motheduc 0.19012613
## fatheduc 0.10893866
## abil 0.40146240
## [Link] 0.05059901

[Link] <- [Link][4,]


[Link] <- [Link][5,]
[Link] <- -[Link] / ([Link]*2)
[Link]

## [1] -3.967098

The predicted education is minimized at an ability level of -3.9671

(v) Argue that only a small fraction of men in the sample have “ability” less than the value calculated in part (iv). Why is this
important?

[Link] 6/7
1/3/2021 Chapter 3 Homework (Take 2)

count(htv$abil <= [Link])

## x freq
## 1 FALSE 1215
## 2 TRUE 15

Only 15 out of the 1230 men have ability levels of less than -3.967. This is important because it shows that only a small fraction of men
have an ability level of less than this value while also having education that is >=0.

(vi) If you have access to a statistical program that includes graphing capabilities, use the estimates in part (iv) to graph the
relationship between the predicted education and abil. Set motheduc and fatheduc at their average values in the sample, 12.18
and 12.45, respectively.

[Link] <- [Link][1,] + ([Link][2, ]*mean(htv$motheduc)) + ([Link][3,]*mean(htv$fatheduc)) + ([Link][4,]*htv$abil) + [Link][5,]*[Link]

htv %>% ggplot(aes(x = abil, y = [Link]))+


geom_point(size = 1, color = "blue" )+
theme_pubr()+
ylab("Predicted Education")+
xlab("Ability Level")

[Link] 7/7

You might also like