How do I change each individual axis interval in a spider plot?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a 5 category/data group spider plot. Each data group has different averages for example one average is in the 30,000s and the other is in the low 0.5s. I am looking to change each individual axis of my spider plot (so each line) so that I can show all this data on one plot. Please help with this code! Thank you!
0 Kommentare
Antworten (1)
Kumar Pallav
am 27 Jan. 2022
Hello,
You could set the axis limits for each category of data group.
As an example,
D1 = [5 3 9 1 2];
D2 = [5 8 7 2 9];
D3 = [8 2 1 4 6];
P = [D1; D2; D3];
% Spider plot
spider_plot(P,...
'AxesLimits', [1, 2, 1, 1, 1; 10, 8, 9, 5, 10]); % [min axes limits; max axes limits]
Here, for 5 categories/features of data, the minimum and maximum axes limits are set manually. You could arrange your data accordingly to fit.
Hope it helps!
0 Kommentare
Siehe auch
Kategorien
Mehr zu Line Plots 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!