properties of 'qqplot' function?
21 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Fercho_Sala
am 1 Jun. 2021
Kommentiert: Star Strider
am 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.
0 Kommentare
Akzeptierte Antwort
Star Strider
am 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
.
2 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!