Economics7103 HW2 Solved

30.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You'll get a download link with a: zip solution files instantly, after Payment

Securely Powered by: Secure Checkout

Description

Rate this product

 

You have access to imaginary data on an energy-efficiency retrofit program in Atlanta kwh.csv and you are interested in whether the program reduced energy use. In your dataset is the following information:

Variable Description
electricity kWh of electricity used by the household in the month
sqft Square feet of the home
retrofit = 1 if the home received a retrofit
temp The outdoor average temperature (◦F) during the month at the home’s location

Table 1: Variable descriptions for homework 1.

After recruiting the households for the program, you assigned them to treatment and control groups. Treatment homes received the retrofits on the first of the month and control homes did not have any work done.

  1. Check for balance between the treatment and control groups using Python. Create a table that displayseach variable’s sample mean, sample standard deviation, and p-values for the two-way t-test between treatment and control group means. Your table should have four columns: one with variable names, one with sample mean and standard deviation for the control group, one with sample mean and standard deviation for the treatment group, and one with the p-value for the difference-in-means test. Does it appear that the randomization worked? If so, what can we say about the simple difference-in-means estimate?
  2. Provide graphical evidence that the retrofits worked. Plot kernel density plots of the electricity use fortreated group and control group on the same graph using Python. Make sure to label the histogram appropriately.
  3. Suppose you want to estimate the linear equation Y = βX + ε where Y is an n × 1 vector of the dependent variable, X is an n×p + 1 matrix of the predictor variables in table 1 and a column of ones, and is an n× 1 vector of unobserved random error. Use the following methods to estimate βˆ, presenting coefficients in a single table with a column for each estimation technique (note I am not requiring that you present confidence intervals):
    • OLS by hand. Use the Numpy package in Python to create an array X that is the n×p+1 matrix of the predictor variables in table 1 and a column of ones and an array Y that is the n×1 vector of the dependent variable. Use matrix operations to calculate βˆ. Recall that βˆ = (X0X)−1X0Y is the closed-form solution to the least-squares minimization problem.
    • OLS by simulated least squares. Use the Scipy.optimize.minimize() function in Python to numerically minimize the sum of squares objective function. Recall that the sum of squares is where yi and xi are (1 × 1) and (1 ×p + 1) vectors respectively.
    • OLS using a canned routine. Use the StatsModels package in Python using the OLS routine.
  • homework2-t37ha1.zip