biplot understanding

5 ビュー (過去 30 日間)
Raviteja
Raviteja 2011 年 9 月 19 日
>> x=[1 2 3 4 5 6;1 2 3 4 5 6]'
x =
1 1
2 2
3 3
4 4
5 5
6 6
>> biplot(x)
>> x=[1 2 3 4 5 6;1 2 3 4 5 -6]'
x =
1 1
2 2
3 3
4 4
5 5
6 -6
>> biplot(x)
Iam unable understand biplot for the above two cases. What the second biplot is doing there ?

採用された回答

Wayne King
Wayne King 2011 年 9 月 19 日
Hi, In the first biplot both component 1 and component 2 (the columns of your matrix) are in the same direction and magnitude.
In the second example, biplot() makes the largest magnitude coefficient (element) in each column positive. That is the sign convention. So the -6 in the second column becomes positive and all the other elements in the 2nd column change sign to be negative.
That does not affect the interpretation, which demonstrates that x(end,1) and x(end,2) differ from the relationship between x(1:end-1,1) and x(1:end-1,2)
Wayne
  3 件のコメント
Wayne King
Wayne King 2011 年 9 月 19 日
I suspect that since the inputs to biplot() are typically principal component coefficients or factor loadings, basing the signs on the largest magnitude principal component coefficient or factor loading makes a lot of sense. Because you change all the signs in the vector accordingly, the interpretation is not affected.
Raviteja
Raviteja 2011 年 9 月 19 日
Thanks Wayne!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDimensionality Reduction and Feature Extraction についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by