楼主: liubing408
6177 6

[问答] 在SAS里可以画出Bland-Altman的图么? [推广有奖]

  • 0关注
  • 0粉丝

高中生

77%

还不是VIP/贵宾

-

威望
0
论坛币
40 个
通用积分
0
学术水平
1 点
热心指数
0 点
信用等级
0 点
经验
351 点
帖子
28
精华
0
在线时间
12 小时
注册时间
2010-3-19
最后登录
2014-8-8

相似文件 换一批

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
在SAS里可以画出Bland-Altman的图么?如题
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:Bland-Altman Altman Bland blan Land SAS Bland-Altman

回帖推荐

realgod5417 发表于2楼  查看完整内容

Step 1: Calculate the differences and averages. (Actually the differences are used in the plot of identity above) using this code: DATA BA; input large mini; diff=large-mini; avg=(large+mini)/2; datalines; … data follow… Step 2: Specify values for the x and y axes for the plot, and this is done with macro variables in the following code: %let minx=100;%let maxx=700;%let tickx=50; The ...

本帖被以下文库推荐

沙发
realgod5417 发表于 2010-12-21 11:33:20 |只看作者 |坛友微信交流群
Step 1: Calculate the differences and averages. (Actually the differences are used in the plot of identity above) using this code:
DATA BA;
input large mini;
diff=large-mini;
avg=(large+mini)/2;
datalines;
… data follow…

Step 2: Specify values for the x and y axes for the plot, and this is done with macro variables in the following code:

%let minx=100;%let maxx=700;%let tickx=50;
The “tick” variable specifies how often ticks will appear on the axis. For the X axis the minimum and maximum should reflect values that fully encompass the values of the original data (mini and large in this case.)


Step 3: Create necessary information to produce the mean line at 0 using the information in the “anno” data set shown below:
data anno;
   function='move'; xsys='1'; ysys='1'; x=0; y=0; output;
   function='draw'; xsys='1'; ysys='1'; color='red'; x=100; y=100; size=2;

output;

run;
Step 4: The plot of identity is produced using this code (using calculated upper and lower bound previously created.)

symbol1
i=none v=dot c=black height=1;

* X AXIS - HORIZONTAL;

axis1
length=6.5 in width=1


value=(font="Arial"
h=1) order=&minx to &maxx by &tickx;

* YAXIS - VERTICAL;

axis2
length=4.5 in width=1


value=(font="Arial"
h=1) order=&minx to &maxx by &tickx;

footnote ;

proc
gplot
data=PERF;

plot large*mini /
haxis=axis1 vaxis=axis2

vref= (&blower &bupper &bmeandiff) cvref=red;

run;

bt-plot.rar

871 Bytes

本附件包括:

  • bt-plot.sas

梅须逊雪三分白雪却输梅一段香

使用道具

藤椅
tigercip 发表于 2011-3-4 11:05:35 |只看作者 |坛友微信交流群
正在学习。

使用道具

板凳
xyyxxf 发表于 2013-8-20 14:38:24 |只看作者 |坛友微信交流群
如何给这几个线加上label或图例说明呢?

使用道具

报纸
liubing408 发表于 2014-7-25 15:18:27 |只看作者 |坛友微信交流群
在系统自带的画图程序里再二次操作吧

使用道具

地板
hzdailinlin 发表于 2014-8-26 09:50:05 |只看作者 |坛友微信交流群
做不出来,好像程序有点小问题

使用道具

7
DAWN1406 发表于 2022-4-19 15:04:24 |只看作者 |坛友微信交流群
可以使用网页版SPSSAU进行分析:
https://bbs.pinggu.org/thread-10717698-1-1.html

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注cda
拉您进交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-4-20 07:01