2013年1月26日

【SAS NOTE】proc report

摘要: proc report用来生成报告。1 proc report data=mysas.mms nowindows headskip;2 column date wangnei wangjian guoji;3 define wangnei /analysis;4 define date /group;5 run;define-约定特定变量的组织方式。注意 define 的参数用/analysis等来表示,不要忘记/.1 proc report data=mysas.mms nowindows headskip;2 column date,(wangnei wan... 阅读全文

posted @ 2013-01-26 22:49 colipso 阅读(1595) 评论(0) 推荐(0) 编辑

【SAS NOTE】tabulate

摘要: 1 data mysas.mms; 2 infile 'E:\SAS\mysas\mms.txt' dlm='09'x firstobs=2; 3 input date city wangnei wangjian guoji shangxing wangneid wangjiand guojid 4 alld allwangnei allwangjian allguoji allall upfeetiao downfeetiao; 5 run; 6 proc print data=mysas.mms; 7 run; 8 proc tabulate... 阅读全文

posted @ 2013-01-26 17:55 colipso 阅读(494) 评论(0) 推荐(0) 编辑

【SAS NOTE】FREQ

摘要: 1 data mysas.frequence;2 infile 'E:\SAS\mysas\frequence.txt' firstobs=2;3 input a b c;4 proc freq data=mysas.frequence;5 tables a a*b;6 run;可以从明细中来统计某一类产品的订购数等。 阅读全文

posted @ 2013-01-26 16:47 colipso 阅读(348) 评论(0) 推荐(0) 编辑

【SAS NOTE】sas 9.2 安装

摘要: 见:http://blog.sina.com.cn/s/blog_840b11ae01019333.html一、SAS9.2的下载SAS一般比较大,所以要有好的网才行(我们宿舍联通10M)。网上下载资源虽多,但很多不靠谱,在此我提供一个下载地址:sas9.2版本下载地址ed2k://|file|[SAS.9.2多国语言版(更新9.21.TS2M2版)].SAS9_2_Disk1.iso|4315152384|3b745cacd89fb908859d8a5aa7b8063e|/ed2k://|file|[SAS.9.2多国语言版(更新9.21.TS2M2版)].SAS9_2_Disk2.iso| 阅读全文

posted @ 2013-01-26 15:40 colipso 阅读(2705) 评论(0) 推荐(0) 编辑

导航