由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - SAS问题求助!
相关主题
请教:三道SAS BASE题SAS code help!! thanks
[合集] 问个SAS的问题一道SAS面试题,关于dummy variable
求教proc sql 问题SAS Macro 问题请教 。。。
SAS how to change variables' name请教一个SAS recode variable的问题吧
a SAS problemsas question
ask for help (urgent): A SAS question跪求SAS大牛们一个简单问题
About ID in sasSAS 问题:关于比较variable 包子答谢
sampling weight variable怎么用到linear regression里啊?急问一个SAS 的常见问题
相关话题的讨论汇总
话题: weight话题: sas话题: time话题: 数据话题: 根据
进入Statistics版参与讨论
1 (共1页)
s*******e
发帖数: 1385
1
我有一组数据
其中一个variable是weight
我想根据weight把数据expand了,例如
id weight time
1 5 2
2 3 4
转换成
id weight time
1 1 2
1 1 2
1 1 2
1 1 2
1 1 2
2 1 4
2 1 4
2 1 4
根据weight,把数据展开,我知道R怎么做,但也想知道怎么用SAS,谢谢大家
d*******o
发帖数: 493
2
data one;
input id weight time;
cards;
1 5 2
2 3 4
;
run;
data two(drop=weight rename=(new_weight=weight));
set one;
do until (weight<1);
id=id;
time=time;
weight=weight-1;
new_weight=1;
output;
end;
run;
s*******e
发帖数: 1385
3
thanks,5个包子答谢

【在 d*******o 的大作中提到】
: data one;
: input id weight time;
: cards;
: 1 5 2
: 2 3 4
: ;
: run;
: data two(drop=weight rename=(new_weight=weight));
: set one;
: do until (weight<1);

1 (共1页)
进入Statistics版参与讨论
相关主题
急问一个SAS 的常见问题a SAS problem
如何把一个variable中missing 的observation 付上非missing observation 的valueask for help (urgent): A SAS question
问个sas的小问题。About ID in sas
sas helpsampling weight variable怎么用到linear regression里啊?
请教:三道SAS BASE题SAS code help!! thanks
[合集] 问个SAS的问题一道SAS面试题,关于dummy variable
求教proc sql 问题SAS Macro 问题请教 。。。
SAS how to change variables' name请教一个SAS recode variable的问题吧
相关话题的讨论汇总
话题: weight话题: sas话题: time话题: 数据话题: 根据