asadoughi/stat-learning

Sub-Section 3.6.2 Simple Linear regression page 112, missing $ in code

Closed this issue · 1 comments

In chapter 3, Sub-Section 3.6.2 Simple Linear regression on page 112, there is a paragraph that states, to quote,

we will now plot medv and lstat along with the least squares regression line using the plot() and albline () functions.
plot(lstat, medv)

This code returns an error Error in plot(lstat, medv) : object 'lstat' not found
there is a missing $ in the code plot(lstat, medv)
The correct code syntax should be > plot(Boston$lstat, Boston$medv)

Ohh, I see this is not the ISLR book official github page. Closing the issue as it is not related.