实际上,您需要在调用期间添加一个输出参数,pareto
然后您将获得 2 个句柄(线和条系列)以及 2 个轴。您想获得获得YTickLabel
的第二个轴的属性。所以我怀疑在你pareto
上面的调用中你不需要提供ax
论点。
例子:
[handlesPareto, axesPareto] = pareto(explained,X);
现在,如果您使用此命令:
RightYLabels = get(axesPareto(2),'YTickLabel')
你得到以下(或类似的东西):
RightYLabels =
'0%'
'14%'
'29%'
'43%'
'58%'
'72%'
'87%'
'100%'
您可以做的实际上是完全删除它们并用text
注释替换它们,您可以根据需要进行自定义。请参阅此处以获得很好的演示。
应用于您的问题(使用函数文档中的虚拟值),您可以执行以下操作:
clear
clc
close all
y = [90,75,30,60,5,40,40,5];
figure
[hPareto, axesPareto] = pareto(y);
%// Get the poisition of YTicks and the YTickLabels of the right y-axis.
yticks = get(axesPareto(2),'YTick')
RightYLabels = cellstr(get(axesPareto(2),'YTickLabel'))
%// You need the xlim, i.e. the x limits of the axes. YTicklabels are displayed at the end of the axis.
xl = xlim;
%// Remove current YTickLabels to replace them.
set(axesPareto(2),'YTickLabel',[])
%// Add new labels, in bold font.
for k = 1:numel(RightYLabels)
BoldLabels(k) = text(xl(2)+.1,yticks(k),RightYLabels(k),'FontWeight','bold','FontSize',18);
end
xlabel('Principal Component','fontweight','b','fontsize',20)
ylabel('Variance Explained (%)','fontweight','b','fontsize',20)
这给出了这个:
你当然可以像这样自定义你想要的一切。