我试图在Matlab中为右侧y轴加粗Pareto图,但我不能让它工作。有没有人有什么建议?当我尝试更改ax的第二维时,我收到一个错误: "指数超过矩阵维度。
pcaCluster出错(第66行) 集(斧(2),'线宽',2.0);"
figure()
ax=gca();
h1=pareto(ax,explained,X);
xlabel('Principal Component','fontweight','b','fontsize',20)
ylabel('Variance Explained (%)','fontweight','b','fontsize',20)
set(ax(1),'Linewidth',2.0);
set(ax(1),'fontsize',18,'fontweight','b');
%set(ax(2),'Linewidth',2.0);
%set(ax(2),'fontsize',18,'fontweight','b');
set(h1,'LineWidth',2)
答案 0 :(得分:0)
这是因为ax是(第一个/左侧)轴对象的句柄。这是一个单一值,ax(1)
你很幸运,它再次ax
,但ax(2)
根本无效。
我建议阅读有关如何获得第二轴的文档。另一个好主意总是在绘图浏览器中打开绘图,单击所需的任何对象以便选择它,然后通过在命令窗口中键入gco
(获取当前对象)来获取其句柄。然后,您可以将其与set(gco, ...)
一起使用。
答案 1 :(得分:0)
实际上你需要在调用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
注释替换它们,您可以根据需要自定义它们。请参阅here以获得精彩演示。
应用于您的问题(使用函数文档中的虚拟值),您可以执行以下操作:
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)
给出了这个:
您当然可以自定义您想要的所有内容。