how to generate correlation matrix with panel data?
Afficher commentaires plus anciens
Hello,
I have an excel data similar to:
year company Ratio1 Ratio2 Ratio3 ...
1 x a b c
2 x d e f
1 y g h j
2 y t u p
1 z ...
2 z ...
and I want to generate a correlation matrix between the ratios. But I dont know how to do it with the my dataset.
I would be glad if you can help me about this.
thank you for your answers in advance,
Réponses (1)
KALYAN ACHARJYA
le 31 Oct 2019
Modifié(e) : KALYAN ACHARJYA
le 31 Oct 2019
- Read the excel file
- Read the columns as column vectors, say col1,col2 etc
- Here, next
result=corrcoef(col1); % so on
If pairwise
result=corrcoef(col1,col2);
More detail here
3 commentaires
e.a.
le 31 Oct 2019
KALYAN ACHARJYA
le 31 Oct 2019
I have no idea about the datasets, but you apply apply the same in section of the column vector right? .
e.a.
le 31 Oct 2019
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!