热线电话:13121318867

登录
首页精彩阅读SAS—format过程
SAS—format过程
2017-04-02
收藏

SAS—format过程

format过程主要用来定义数值或符号文字的输出和输入格式。接下来看一个例子:

/*format 过程定义了变量类型 income_desc*/

proc format ;

value income_desc 0-<5000 = '低收入'

             5000-<10000 = '中等收入'

             other = '高收入';

run;

data income;

input id name $ income;

cards

;

10001 小西 3500

10002 小东 15000

10003 小北 20000

10004 小南 7500

10005 小中 4500

;

run;


proc print data = income;

format income income_desc.;/*引用了format过程定义的类型*/

run;数据分析师培训

数据分析咨询请扫描二维码

最新资讯
更多
客服在线
立即咨询