[code:3c515]data aa;
input r time treat $ x y@@;
cards;
1 1 A 760 770
2 1 B 860 855
3 1 A 568 602
4 1 A 780 800
5 1 B 960 958
6 1 B 940 952
7 1 A 635 650
8 1 B 440 450
9 1 A 528 530
10 1 B 800 803
;[/code:3c515]
我想根据aa建立一个数据集bb,当r=3时,x为缺失值,r=7和9时,y为缺失值,其他保持不变,请问程序应该如何编写?多谢!作者: shiyiming 时间: 2004-5-4 14:23
data bb;
set aa;
if r=3 then x=.;
if r=7 or r=9 then y=.;
run;