码迷,mamicode.com
首页 > 其他好文 > 详细

SAS 软件相关参数

时间:2020-01-06 12:53:18      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:ram   cal   格式   col   end   home   strong   man   conf   

修改 SAS OnDemand for Academics 显示语言

option locale=en_US;
option DFLANG=locale;

修改 SAS 可用内存

检查快捷方式对应的配置文件

"C:\Program Files\SASHome\SASFoundation\9.4\sas.exe" -CONFIG "C:\Program Files\SASHome\SASFoundation\9.4\nls\1d\sasv9.cfg"

修改 sasv9.cfg 中 -MEMSIZE 2G 选项即可。

修改 p 值显示格式

追踪程序所用模板

ods trace on;
<sas codes>
ods trace off;

查看模板代码

proc template;
source Common.Column.Matrix;
run;

根据模板修改 p 值格式

示例1

proc template;
define column Common.PValue;
just = r;
format = bestd.4;
end;
run;

示例2

define column Common.Column.Matrix;
    dynamic csplit id cmwidth cmxwidth fuzz;
    define header t;
        text _label_;
        split = csplit;
    end;
    header = t;
    just = r;
    width = cmwidth;
    width_max = cmxwidth;
    fuzz = fuzz;
    id = id;
    generic;
    format = bestd.4;
end;

SAS 软件相关参数

标签:ram   cal   格式   col   end   home   strong   man   conf   

原文地址:https://www.cnblogs.com/radact/p/12155450.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!