Advanced Regression. - Generalized Linear Regression - Regularized Regression - Ridge and Lasso Regression Generalized Linear Regression process consists of the following two steps: 1. Conduct exploratory data analysis by examining scatter plots of explanatory and dependent variables. 2. Choose an appropriate set of functions which seem to fit the plot well and build models using them. Functions having no global maxima or minima are usually polynomial functions. Also, they typically have multiple roots and local maxima and minima. Ex: ax^4+bx^3+cx^2+dx+f Monotonically increasing function Ex: e^x 1. Can x1.x2.x3 be a feature if the raw attributes are x1, x2, x3 and x4? A. Yes, Derived features can be created using any combination of the raw attributes (linear or non-linear). In this case, the combination x1. x2. x3 is non-linear. 2. How many maximum features can be created if we have d raw attributes for n data points? Note that (n r) here refers to the number of...