PROC Tabulate 制表总结(转)
2014-02-11 10:44阅读:
PROC
Tabulate 制表总结
1、 最基本的表格
data boats;
infile
'c:\users\lichao\desktop\sas\data\boats.dat';
input Name $12. +1 Port
$ Locomotion $ Type $
Price;
run;
proc print data=boats;
run;
proc tabulate data=boats;
class
type port locomotion;
table
type,port,locomotion;
run;
(程序绘制的是port