在SAS中仅显示堆叠相关矩阵中的变量名称

时间:2018-06-01 17:47:43

标签: sas

在SAS中,有没有办法在堆叠相关矩阵中显示变量标签而不是变量名?特别是在矩阵顶部的行中?我应用了一个修改base.corr.stackedmatrix的模板,将重要p值的颜色更改为红色,我知道使用RowLabel列会显示变量标签。我无法弄清楚如何显示变量名称行的标签,因此只显示变量标签。

proc format;
    value pvalsig low-.05 ="red" .05-high="black";
run;

proc template;
    edit base.corr.stackedmatrix;
        column (RowLabel) (Matrix) * (Matrix2) * (Matrix3) * (Matrix4);
        edit matrix2;
            style={foreground=pvalsig.};
        end;
    end;
run;

0 个答案:

没有答案