Help plotting a multivar table
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, I have the 505x9 table in the picture (I uploaded the file) and I would like to plot the variable named "PILMilioniDiEuro" by Year (first variable named "Anno") and EUCode (second variable named "CodiceEu).
I tried using plot3 and parallelplot functions. Can someone help me? Thanks a lot.
0 commentaires
Réponse acceptée
Peter Perkins
le 9 Mar 2022
There are many good reasons to put data into a table, but plot3 does not yet accept a table as input. This will make the plot:
plot3(t.Anno,t.CodiceEu,t.PILMilioniDiEuro)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Pole and Zero Locations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!