3 Classification
3.1 Seminar
You will need to load the core library for the course textbook:
library(ISLR)
3.1.1 Exercise
This question should be answered using the Weekly
dataset, which is part of the ISLR
package. This data contains 1,089 weekly stock returns for 21 years, from the beginning of 1990 to the end of 2010.
Produce some numerical and graphical summaries of the
Weekly
data. Do there appear to be any patterns?Use the full dataset to perform a logistic regression with
Direction
as the response and the five lag variables plusVolume
as predictors. Use the summary function to print the results. Do any of the predictors appear to be statistically significant? If so, which ones?Compute the confusion matrix and overall fraction of correct predictions. Explain what the confusion matrix is telling you about the types of mistakes made by logistic regression.
Now fit the logistic regression model using a training data period from 1990 to 2008, with
Lag2
as the only predictor. Compute the confusion matrix and the overall fraction of correct predictions for the held out data (that is, the data from 2009 and 2010).Repeat (d) using LDA.
Repeat (d) using QDA.
Repeat (d) using KNN with K = 1.
Which of these methods appears to provide the best results on this data?
Experiment with different combinations of predictors, including possible transformations and interactions, for each of the methods. Report the variables, method, and associated confusion matrix that appears to provide the best results on the held out data. Note that you should also experiment with values for K in the KNN classifier.
3.1.2 Exercise
In this problem, you will develop a model to predict whether a given car gets high or low gas mileage based on the Auto
dataset from the ISLR
package.
Create a binary variable,
mpg01
, that contains a 1 ifmpg
contains a value above its median, and a 0 ifmpg
contains a value below its median. You can compute the median using themedian()
function. Note you may find it helpful to use thedata.frame()
function to create a single dataset containing bothmpg01
and the otherAuto
variables.Explore the data graphically in order to investigate the association between
mpg01
and the other features. Which of the other features seem most likely to be useful in predictingmpg01
? Scatterplots and boxplots may be useful tools to answer this question. Describe your findings.Split the data into a training set and a test set.
Perform LDA on the training data in order to predict
mpg01
using the variables that seemed most associated withmpg01
in (b). What is the test error of the model obtained?Perform QDA on the training data in order to predict
mpg01
using the variables that seemed most associated withmpg01
in (b). What is the test error of the model obtained?Perform logistic regression on the training data in order to predict
mpg01
using the variables that seemed most associated withmpg01
in (b). What is the test error of the model obtained?Perform KNN on the training data, with several values of K, in order to predict
mpg01
. Use only the variables that seemed most associated withmpg01
in (b). What test errors do you obtain? Which value of K seems to perform the best on this dataset?
3.1.3 Exercise
This problem involves writing functions.
Write a function
calc_square()
, that returns the result of raising a number to the 2nd power. For example, callingcalc_square(5)
should return the result of \(5^2\) or 25.Hint: Recall that
x^a
raisesx
to the powera
.Write a new function
calc_power()
, that allows you to pass any two numbers,x
anda
, and prints out the value ofx^a
. For example, you should be able to callcalc_power(3,8)
and your function should return \(3^8\) or 6561.Using the
calc_power()
function that you just wrote, compute \(10^3\), \(8^{17}\), and \(131^3\).Now using the
calc_power()
function, create a plot of \(f(x) = x^2\). The \(x\)-axis should display a range of integers from 1 to 10, and the \(y\)-axis should display \(x^2\). Label the axes appropriately, and use an appropriate title for the figure. Consider displaying either the \(x\)-axis, the \(y\)-axis, or both on the log-scale. You can do this by usinglog="x"
,log="y"
, orlog="xy"
as arguments to theplot()
function.Write a function
plot_power()
, that allows you to create a plot ofx
againstx^a
for a fixeda
and for a range of values ofx
. For instance:
plot_power(1:10, 3)
The result should be a plot with an \(x\)-axis taking on values \(1,2,\dots ,10\), and a \(y\)-axis taking on values \(1^3,2^3,\dots ,10^3\).