How to plot this frequency graph?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dear all,
I have runoff and precipitation data (as I attached), how I can achieve such a plot?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/762736/image.jpeg)
I tried this script:
histogram2(precipitation,runoff,'Normalization','count')
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/762731/image.jpeg)
But it seems wrong and the range of x and y lines doesn't set between 0 to 1. The name of this plot below is bivariate frequency graph which is a histogram of precipitation and runoff.
Thank you in advance
2 commentaires
Ive J
le 10 Oct 2021
Do you mean something like this?
pn = normalize(precipitation, 'range');
rn = normalize(runoff, 'range');
histogram2(rn, pn)
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Weather and Atmospheric Science 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!