Answer (Choose 1 answer)
What steps do the following lines of code perform?Input=[('scale', StandardScaler()), ('model', Linear Regression())]pipe-Pipeline(Input)ypipe pipe.predict(Z)
pipe.fit(Z,y)
A. Standardize the data, then perform a polynomial transform on the features Z
B. Find the correlation between Z and y
C. Standardize the data, then perform a prediction using a linear regression model using the targets y
D. None of others
8