Partial Least Squares cross-decomposition (PLS regression)¶
Finds the fundamental relations between two matrices X and Y, ie. it finds the (multidimensional) direction in X that best explains maximum multidimensional direction in Y. See also PCA-analysis
Configuration: |
|
---|---|
Attributes: |
|
Inputs: | |
Outputs: |
|
Ports:
Outputs:
model: model
Model
Configuration:
- n_components
- Number of components to keep.
- scale
- whether to scale the data
- max_iter
- the maximum number of iterations of the NIPALS inner loop (used only if algorithm=”nipals”)
- tol
- Tolerance used in the iterative algorithm default 1e-06.
Some of the docstrings for this module have been automatically extracted from the scikit-learn library and are covered by their respective licenses.