如何在Matlab中更改帕累托图右轴的字体大小

How to change font size of right axis of Pareto plot in Matlab

提问人:user1042343 提问时间:2/12/2015 更新时间:2/12/2015 访问量:944

问:

我正在尝试在 Matlab 中为帕累托图加粗右侧 y 轴,但我无法让它工作。有人有什么建议吗?当我尝试更改 ax 的第二个维度时,出现错误: “索引超出了矩阵维度。

pcaCluster 中的错误(第 66 行) set(ax(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)
MATLAB 的MATLAB 帕累托图

评论


答:

0赞 Thomas 2/12/2015 #1

这是因为 ax 是(第一个/左边)轴对象的句柄。它是一个单一的值,你很幸运,它又是,但根本不有效。ax(1)axax(2)

我建议阅读有关如何获取第二个轴的文档。另一个好主意是在绘图浏览器中打开绘图,单击所需的任何对象,以便将其选中,然后通过在命令窗口中键入(获取当前对象)来获取其句柄。然后,您可以将其与 一起使用。gcoset(gco, ...)

0赞 Benoit_11 2/12/2015 #2

实际上,您需要在调用期间添加一个输出参数,然后您将获得 2 个句柄(线和条形系列)以及 2 个轴。您想获取获得的第 2 个轴的属性。因此,我怀疑在您对上述调用中,您不需要提供参数。paretoYTickLabelparetoax

例:

[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)

这给出了这个:

enter image description here

你当然可以像这样自定义你想要的一切。