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
Input value inMatrix Matrix Input data with variables in columns and examples in rows.
Input value inPCAModel PCAModel Previously created PCA model to apply to data provided in inMatrix.
Output value outTransformedMatrix Matrix Transformed inMatrix.