Note
Go to the end to download the full example code. or to run this example in your browser via Binder
Lasso path using LARS#
Computes Lasso Path along the regularization parameter using the LARS algorithm on the diabetes dataset. Each color represents a different feature of the coefficient vector, and this is displayed as a function of the regularization parameter.
Computing regularization path using the LARS ...
.
# Authors: The scikit-learn developers
# SPDX-License-Identifier: BSD-3-Clause
import matplotlib.pyplot as plt
import numpy as np
from sklearn import datasets, linear_model
X, y = datasets.load_diabetes(return_X_y=True)
print("Computing regularization path using the LARS ...")
_, _, coefs = linear_model.lars_path(X, y, method="lasso", verbose=True)
xx = np.sum(np.abs(coefs.T), axis=1)
xx /= xx[-1]
plt.plot(xx, coefs.T)
ymin, ymax = plt.ylim()
plt.vlines(xx, ymin, ymax, linestyle="dashed")
plt.xlabel("|coef| / max|coef|")
plt.ylabel("Coefficients")
plt.title("LASSO Path")
plt.axis("tight")
plt.show()
Total running time of the script: (0 minutes 0.069 seconds)
Related examples
Regularization path of L1- Logistic Regression
Regularization path of L1- Logistic Regression
Lasso and Elastic Net
Plot Ridge coefficients as a function of the regularization
Plot Ridge coefficients as a function of the regularization
Joint feature selection with multi-task Lasso
Joint feature selection with multi-task Lasso