Capaplot: Color change possible?
2 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
Sudhanshu Bhatt
on 28 Oct 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 Comments
More Answers (0)
See Also
Categories
Find more on Industrial Statistics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!