how to generate correlation matrix with panel data?
Mostra commenti meno recenti
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,
Risposte (1)
KALYAN ACHARJYA
il 31 Ott 2019
Modificato: KALYAN ACHARJYA
il 31 Ott 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 Commenti
e.a.
il 31 Ott 2019
KALYAN ACHARJYA
il 31 Ott 2019
I have no idea about the datasets, but you apply apply the same in section of the column vector right? .
e.a.
il 31 Ott 2019
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!