properties of 'qqplot' function?

21 visualizaciones (últimos 30 días)
Fercho_Sala
Fercho_Sala el 1 de Jun. de 2021
Comentada: Star Strider el 2 de Jun. de 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.

Respuesta aceptada

Star Strider
Star Strider el 1 de Jun. de 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 comentarios
Fercho_Sala
Fercho_Sala el 2 de Jun. de 2021
@Star Strider Thank you !
Star Strider
Star Strider el 2 de Jun. de 2021
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by