What steps do the following lines of code perform? input=[('scale', StandardScaler()), ('model', LinearRegression())] pipe=pipeline(input) (z, y) ypipe=pipe.predict(z)
a) Preprocessing data and building a linear regression model
b) Preprocessing data and scaling the features
c) Predicting y values using linear regression
d) Building a pipeline for feature scaling and model fitting