Pattern Pie chart plot
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dear Altruist,
How can I create this types of Pie chart in MATLab?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1054320/image.png)
0 Kommentare
Antworten (1)
Raghav
am 4 Jul. 2022
You can use the pie() function in MATLAB to make such a piechart. You can use a 'labels' array to label your piechart.
X = [1 5 6 10 13 52];
labels = {'Oceania','South America','North America','Europe','Africa','Asia'};
explode=[1 0 0 0 0 0];
pie(X,explode,labels)
The reason for using explode parameter is to prevent overlap of 'South America' and 'Oceania' label. When a pie slice is <2% of total, then overlap happens in label of that slice with neighbouring slice's label.Put ith value of explode array =1 to offset the ith pie slice, like Oceania in above example.The values I took in 'X' array are by approximation and to understand better you can read the documentation attached below:
Siehe auch
Kategorien
Mehr zu Pie Charts finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!