In the implementation of Linear Regression using Python and other libraries (sklearn) the usual declarations we deploy are
from sklearn import linear_model
.......
..
regr = linear_model.LinearRegression()
...
..
I know that LinearRegresssion
is a class in the library sklearn
, then what exactly linear_model
signifies? and how class and libraries are usually linked/related? can you please give a light in this or share relevant pages for my understanding of core concept.