1. simple linear regression will refer to one independent variable to make a prediction y= b+ax b: the intercept a: the slope fit X: Predictor variable Y: Target variable import linear_model from scikit-learn create a linear regression object using the constructor define the predictor, target variable use fit() - fine the parameters b, a obtain a prediction from sklearn.linear_model import Linea..