forked from caojiguo/FDAworkshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata3.0.sas
More file actions
19 lines (15 loc) · 698 Bytes
/
data3.0.sas
File metadata and controls
19 lines (15 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*statistics availability:
https://github.com/igargikaushik/FDAworkshop/new/master */
libname sdtm "C:\review\sdtm";
proc contents data=sdtm._all_ out=out1 noprint;
proc print data=out1(keep=memname memlabel name label format informat length);
run;
proc print data=out1(keep=memname memlabel name label format informat length);
where format>' ' or informat>' ';
run;
proc print data=out1(keep=memname memlabel name label format informat length);
where anypunct(label)>0 and index(label,'/')=0 and index(label,'-')=0;
run;
proc print data=out1(keep=memname memlabel name label format informat length);
where anypunct(memlabel)>0 and index(memlabel,'/')=0 and index(label, '-')=0;
run;