Data: We will use the dataset "MASchools" included in the package "AER". The dataset contains data on test performance,

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

Data: We will use the dataset "MASchools" included in the package "AER". The dataset contains data on test performance,

Post by answerhappygod »

Data We Will Use The Dataset Maschools Included In The Package Aer The Dataset Contains Data On Test Performance 1
Data We Will Use The Dataset Maschools Included In The Package Aer The Dataset Contains Data On Test Performance 1 (460.75 KiB) Viewed 87 times
Data: We will use the dataset "MASchools" included in the package "AER". The dataset contains data on test performance, school characteristics and student demographic backgrounds for school districts in Massachusetts. (The lectures us a similar dataset for schools in CA.) For the questions in this exercise, therefore, you should load the dataset "MASchools" via: > data("MASchools", package = "AER") There are alternative ways to load the data in R. In tutorial sessions for example, we loaded the package first and then loaded the data. R-tips: You might want to attach the dataset via: > attach(MASchools) You do not need to attach the dataset for this assessment. By attaching the dataset, however, you do not have to specify to which dataset the variables belong when you use them. For example, suppose you want to get summary statistics of the variable salary. Then, before attaching the dataset, you have to do this via > summary(MASchools$salary) But, once you attach the dataset "MASchools", you can do the same thing simply by > summary(salary) The R command attach() is useful when you work with many variables. When you do not need the dataset anymore, you can detach it via: > detach(MASchools)

Estimate the population regression model: TestScore; = Bo+B1 STR; +BzIncome;+B3Lunch;+u; where E[U;|STR;]=0. Here, Income, and Lunch; are the per capita income and percentage of qualified students for reduced-price lunch in school district ;. What is the t value for the OLS estimate of the slope coefficient on STR; (two decimal places)?

After estimationg the regression model in Question 1, you want to test Ho: B2 = B3 = 0 at the 5% significance level. Choose the correct statement. a. We reject Ho because the standard error of B2 is approximately 0.128. 'We reject Ho because the maximum of the p-values associated with B2 and B, is larger than 0.05. b. C. We do not have sufficient evidence to reject Ho because R2 = 0.67. d. We have to test two restrictions jointly and the critical value for this test is 3. e. For this test, the F statistic is 154.9 and we use the F distribution with degrees of freedom 3 and 216.
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply