factoran() vs EM Algorithm FA = fa() : Understanding the difference on carbig.mat in ...toolbox​\stats\sta​tsdemos

조회 수: 2 (최근 30일)
Hi,
Could someone explain me the difference between Matlab built-in
factoran(x,k)
vs user-defined
EM algorithm fa(x,k)
-------------------------------?? ( code )
load carbig;
X = [Acceleration Displacement Horsepower MPG Weight];
X = X(all(~isnan(X),2),:);
lambda= factoran(X, 2)
and
lambda2=fa(X,2) % from <http://www.mathworks.com/matlabcentral/fileexchange/28906-factor-analysis>
Specically I'd like to know why
factoran
outputs a (5*2) matrix of loadings with
size(X,1) = 120
whereas:
EM algorithm fa
outputs a (120*2) matrix of loadings matching my expectations, to the extent that for each data/variable i end up with a sensitivity of the factors.
Best,

채택된 답변

Tom Lane
Tom Lane 2015년 7월 24일
It sounds like you want the fifth output of factoran rather than the first.
  댓글 수: 1
Isma
Isma 2015년 7월 25일
편집: Isma 2015년 7월 25일
That's what i've realized ex-post . it sounds like the EM algo outputs the factor 'scores' (not the factor loadings), matching more or less the 5th output of factoran. cheers.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by