我想在proc print过程步打印结果中显示数据集t的x变量值0.12为12%, 怎么实现? 非常感谢!作者: shiyiming 时间: 2013-6-17 16:14 标题: Re: 请教一个简单的format问题 you may add the code as follow:
data ty;
set t;
xx=put(x,percent8.0);
drop x;
run;
proc print data=ty;
run;
you may get the result you need.作者: shiyiming 时间: 2013-6-18 20:45 标题: Re: 请教一个简单的format问题 [code:3cntohl5]proc print data=t;
format x percent8.;
run;[/code:3cntohl5]