How do I change each individual axis interval in a spider plot?

8 views (last 30 days)
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!

Answers (1)

Kumar Pallav
Kumar Pallav on 27 Jan 2022
Hello,
You could set the axis limits for each category of data group.
Please refer this for more on spider plot.
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!

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!