Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Run the following code: library(AER) data('CreditCard') lm1

Run the following code:

library(AER)

data('CreditCard')

lm1 <- lm(CreditCard$active ~ CreditCard$owner + CreditCard$age + CreditCard$income, data = CreditCard)

summary(lm1)

lm2 <- lm(CreditCard$active ~ CreditCard$owner + CreditCard$age + CreditCard$income + CreditCard$selfemp, data = CreditCard)

summary(lm2)

Based on the results of these two models, can you justify the addition of CreditCard$selfemp?

a.

Yes, while it is insignificant it did result in an increase in the R^2.

b.

Yes, while it is insignificant it did result in a decrease in the standard error of the regression.

c.

Yes, it is clearly an important variable in relation to active credit accounts and should be included.

d.

No, it is insignificant and the adjusted R^2 fell with its inclusion.

e.

None of these

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Income Tax Fundamentals 2013

Authors: Gerald E. Whittenburg, Martha Altus Buller, Steven L Gill

31st Edition

9781285586618

Students also viewed these Accounting questions

Question

2. Describe some questionable research practices.

Answered: 1 week ago