Solved

Which of the Following Statements A), B) or C) Is

Question 66

Multiple Choice

Which of the following statements a) , b) or c) is false?


A) Scikit-learn has separate classes for simple linear regression and multiple linear regression.
B) To find the best fitting regression line for the data in a simple linear regression, a LinearRegression estimator iteratively adjusts the slope and intercept values to minimize the sum of the squares of the data points' distances from the line.
C) Once LinearRegression is finished performing a simple linear regression, you can use the slope and intercept in the y = mx + b calculation to make predictions. The slope is stored in the estimator's coeff_ attribute (m in the equation) and the intercept is stored in the estimator's intercept_ attribute (b in the equation) .
D) All of the above are true.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions