您好,欢迎来到伴沃教育。
搜索
您的当前位置:首页SAS Nadir Value

SAS Nadir Value

来源:伴沃教育

SAS day 47: Nadir value

Definition: Nadir value is the lowest value of best response prior to current assessment or the shortest SLD (sum lesion diameter) along with the tumor measurement progress.

Example:

Measurements: 28,29,27,30,35. Nadir:28,28,27,27,27

Measurements:28,28,27,27,27. Nadir:28,28,27,27,27

Note: Nadir value is changing with the time NOT a global minimum.

Challenge: How to find nadir Value?

Key Step/Functions: Retain, Min

[caption id="attachment_2889" align="alignnone" width="690"] image
data tlnadir;
/*merge tlsum tl_sum_ly;*/
set tsum;
retain nadir;
by subject aday;
if first.subjid then nadir=.;
nadir=min(sld,nadir);
nolymph=sld-lymph;
run;

Output:

image

Sample Data:

data a;
input subjid $  sld aday;
datalines;
001 28 1
001 29 2
001 27 3
001 30 4
001 35 5
002 28 1
002 28 2
002 27 3
002 27 4
;
run;

Copyright © 2019- bangwoyixia.com 版权所有 湘ICP备2023022004号-2

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务