Capaplot: Color change possible?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
fr_sk
am 23 Okt. 2015
Beantwortet: Sudhanshu Bhatt
am 28 Okt. 2015
Hi, I want do use a Process capability plot ('capaplot') of a dataset but the usual commands (.facecolor and .edgecolor) do not change the color of the plot. Is there a command that would work? Thanks in advance :-)
0 Kommentare
Akzeptierte Antwort
Sudhanshu Bhatt
am 28 Okt. 2015
Hi fr_sk,
I understand that you are trying to change the color of the plot.
Below is a sample code for demonstration purposes, which might be helpful in solving this issue:
% Create a capaplot, the code to create a capaplot can be found in the documentation page.
% Documentation link : http://www.mathworks.com/help/stats/capaplot.html#bt53f2o
rng default; % For reproducibility
data = normrnd(3,0.005,100,1);
S = capability(data,[2.99 3.01])
capaplot(data,[2.99 3.01]);
grid on
% Now we use the command "gca" to get the axes where data is plotted
myPlotAxes = gca
% In myPlotAxes, choose the patch
child = myPlotAxes.Children(2)
% Change FaceColor and EdgeColor properties
child.FaceColor ='r'
child.EdgeColor ='g'
Thanks
Sudhanshu Bhatt
If this does not resolve your issue, please create a Technical Support Request by visiting the link below:
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Industrial Statistics 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!