PLSRegression is a class in the scikit-learn library's cross_decomposition module in Python. It implements Partial Least Squares (PLS) regression, which is a regression algorithm that combines features of both Principal Component Analysis (PCA) and Multiple Linear Regression (MLR). PLSRegression is a useful tool for modeling the relationship between two datasets, especially in situations where there are many variables and potential multicollinearity among them. It can handle datasets with missing values by using the NIPALS algorithm. The PLSRegression class provides methods for fitting the model to training data, making predictions on new data, and evaluating the model's performance.
Python PLSRegression.PLSRegression - 30 examples found. These are the top rated real world Python examples of sklearn.cross_decomposition.PLSRegression.PLSRegression extracted from open source projects. You can rate examples to help us improve the quality of examples.