I performed Lasso regression to first do categorical feature selection (parameter space had 900 features, they were reduced to 78 after Lasso), and then as a linear model to calculate certain response variable. I have the coefficients for the parameters that are important according to Lasso. Any ideas as to how I can convert it to a linear regression equation of the type:
y = β0x0 + β1x1 + β2x2 + ...
Thanks!