properties of 'qqplot' function?

50 views (last 30 days)
Fercho_Sala
Fercho_Sala on 1 Jun 2021
Commented: Star Strider on 2 Jun 2021
Hello, How is possible to change the marker size, line properties among other parameters of the 'qqplot' function ? , like the next example?
tab7=uitab('Title','daily number of layers');
ax7=axes(tab7);
sgtitle(tab7, 'Daily number of layers');
S=cellfun('length',locs);
~isnan(S);
qq=qqplot(S); % using Children ???
title('');
ylabel(['Number of layers LT 24h, date: ',R(1).Info.Name(1:8)],'FontSize',9,'FontName','Arial','color','default');
xlabel('');
xticks('');
thanks.

Accepted Answer

Star Strider
Star Strider on 1 Jun 2021
The qqplot function creates 3 line objects. It is possible to modify each one by addressing it specifically —
load gas % Use Documentation Example
figure
hqqp = qqplot(price1);
hqqp(1).MarkerSize = 20; % Data Plot
hqqp(2).LineWidth = 5; % Reference Mid
hqqp(3).Color = 'g'; % Reference Ends
.

More Answers (0)

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!