Note
Go to the end to download the full example code or to run this example in your browser via Binder
PCA vs Factor Analysis with scedatic noises#
computes the PCA and Factor Analysis scores from training \(X\) and compare the probabilistic PCA and FA models errors by adding scedatic (homo/hereto) noises.
# Author: L.Kouadio
# Licence: BSD-3-clause
fetch the analysed data
from watex.analysis import pcavsfa
from watex.datasets import fetch_data
X, _=fetch_data('Bagoue analysed data')
pcavsfa (X)
([-13.35021821995266, -13.376979159782895], [-13.340444115947667, -13.392643293410554])
Total running time of the script: ( 0 minutes 1.308 seconds)

