Question
Using Rstudio We will use a logistic regression to predict the probability ofdefaultusing income andbalanceon theDefaultdata set in the ISLR package. We will now estimate
Using Rstudio
We will use a logistic regression to predict the probability ofdefaultusing income andbalanceon theDefaultdata set in the ISLR package. We will now estimate the test error of this logistic regression model using the validation set approach. Do not forget to set a random seed before beginning your analysis.
- (a)Fit a logistic regression model that uses income and balance to predict default.
- (b)Using the validation set approach, estimate the test error of this model. In order to for this to happen, you must perform the following steps:
i. Split the sample set into a training set and a validation set.
ii.Fit a multiple logistic regression model using only the training observations.
iii. Obtain a prediction of default status for each individual in the validation set by computing the posterior probability of default for that individual, and classifying the individual to the default category if the posterior probability is greater than 0.5.
iv. Compute the validation set error, which is the fraction of the observations in the validation set that are misclassified.
(c) Repeat the process in (b) three times, using three different splits of the observations into a training set and a validation set. Comment on the results obtained.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started