Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Identifying the component in biplot
    조회 수: 1 (최근 30일)
  
       이전 댓글 표시
    
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
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
