SAS中文论坛

 找回密码
 立即注册

扫一扫,访问微社区

12
返回列表 发新帖
楼主: shiyiming
打印 上一主题 下一主题

SAS如何将统计分析的某个结果作为新的变量

[复制链接]

2

主题

13

帖子

40

积分

新手上路

Rank: 1

积分
40
11#
发表于 2016-5-20 04:13:08 | 只看该作者

ods noresults;
ods listing close;
ods output BasicMeasures = Measures;
proc univariate data=Sashelp.fish;
var Width;
run;

proc sql noprint;
   select count(*) as n format=3.  into :n
   from Sashelp.fish
   ;
   select LocValue into :Mean
   from Measures
   where LocMeasure='Mean'
    ;
   select LocValue format=6.4 into :Median
    from Measures
    where LocMeasure='Median'
    ;
   select LocValue format=5.3 into :Mode
    from Measures
    where LocMeasure='Mode'
    ;
        select VarValue format=6.4 into :Std
    from Measures
    where VarMeasure='Std Deviation'
    ;
quit;

%put NOTE: Fish Sample Size=&n, Mean=&Mean, the Midian=&median, and the Mode=&Mode, STD=&std..;
ods results;
ods listing;
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|小黑屋|手机版|Archiver|SAS中文论坛  

GMT+8, 2025-1-14 21:27 , Processed in 0.112234 second(s), 19 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表