Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Identifying the component in biplot

조회 수: 1 (최근 30일)
Guilherme Lopes de Campos
Guilherme Lopes de Campos 2019년 3월 8일
마감: MATLAB Answer Bot 2021년 8월 20일
Hello MATLAB community,
I am using the Factor Analysis in MATLAB, I would to identifying the each variable in biplot of lambda and factor, like that:
%Example help MATLAB Factor Analysis
X = [Acceleration Displacement Horsepower MPG Weight];
X = X(all(~isnan(X),2),:);
[Lambda,Psi,T,stats,F] = factoran(X,2,'scores','regression');
inv(T'*T); % Estimated correlation matrix of F, == eye(2)
Lambda*Lambda' + diag(Psi); % Estimated correlation matrix
Lambda*inv(T); % Unrotate the loadings
F*T';
biplot(Lambda,'LineWidth',2,'MarkerSize',20)
I would to identifying each circle with the name of variable in the biplot,
How I can made this?
Thank you,
Guilherme Lopes

답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by