SAS - 平淡奥特曼分析


Bland-Altman 分析是验证两种设计用于测量相同参数的方法之间一致或不一致程度的过程。方法之间的高度相关性表明在数据分析中选择了足够好的样本。在 SAS 中,我们通过计算变量值的平均值、上限和下限来创建 Bland-Altman 图。然后,我们使用 PROC SGPLOT 创建 Bland-Altman 图。

句法

在 SAS 中应用 PROC SGPLOT 的基本语法是 -

PROC SGPLOT DATA = dataset;
SCATTER X = variable Y = Variable;
REFLINE value;

以下是所使用参数的描述 -

  • 数据集是数据集的名称。

  • SCATTER语句生成以 X 和 Y 形式提供的值的散点图。

  • REFLINE创建水平或垂直参考线。

例子

在下面的示例中,我们采用了名为 new 和 old 的两种方法生成的两个实验的结果。我们计算变量值的差异以及同一观察的变量的平均值。我们还计算用于计算上限和下限的标准偏差值。

结果将 Bland-Altman 图显示为散点图。

data mydata;
input new old;
datalines;
31 45
27 12
11 37
36 25
14 8
27 15
3 11
62 42
38 35
20 9
35 54
62 67
48 25
77 64
45 53
32 42
16 19
15 27
22 9
8 38
24 16
59 25
;

data diffs ;
set mydata ;
/* calculate the difference */
diff = new-old ;
/* calculate the average */
mean = (new+old)/2 ;
run ;
proc print data = diffs;
run;

proc sql noprint ;
select mean(diff)-2*std(diff),  mean(diff)+2*std(diff)
into   :lower,  :upper 
from diffs ;
quit;

proc sgplot data = diffs ;
scatter x = mean y = diff;
refline 0 &upper &lower / LABEL = ("zero bias line" "95% upper limit" "95%
lower limit");
TITLE 'Bland-Altman Plot';
footnote 'Accurate prediction with 10% homogeneous error'; 
run ;
quit ;

执行上述代码时,我们得到以下结果 -

平淡_altman_1

增强型

在上述程序的增强模型中,我们得到了 95% 的置信度曲线拟合。

proc sgplot data = diffs ;
reg x = new y = diff/clm clmtransparency = .5;
needle x = new y = diff/baseline = 0;
refline 0 / LABEL = ('No diff line');
TITLE 'Enhanced Bland-Altman Plot';
footnote 'Accurate prediction with 10% homogeneous error'; 
run ;
quit ;

执行上述代码时,我们得到以下结果 -

平淡_altman_2