Question Title

* 1. What parameters from the equation below are learned for a linear regression?

Question Title

* 2. What purpose do we need true labels (y) for?

Question Title

* 3. Do we need to scale up/down the target value (label) before training the model?

Question Title

* 4. Why it's important to split the data into train and test subsets?

Question Title

* 5. What is the name of the function from sklearn.model_selection package, that splits the data?

Question Title

* 6. How to fit a linear regression model from sklearn.linear_model package with X features and y labels?
model = LinearRegression()

Question Title

* 7. How to predict new instances using the already trained model and features X?

T