ApplyPCATransform
Applies previously obtained Principal Component Analysis (PCA) transformation coefficients to new data.
Syntax
C++
C#
Python
def ApplyPCATransform( inMatrix: Matrix, inPCAModel: PCAModel, outTransformedMatrix: Matrix, / ) -> None
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inMatrix | Matrix | Input data with variables in columns and examples in rows. | |
![]() |
inPCAModel | PCAModel | Previously created PCA model to apply to data provided in inMatrix. | |
![]() |
outTransformedMatrix | Matrix | Transformed inMatrix. |


