SAS

proc datasets

SAS

proc datasetsのログ出力抑制について。 proc datasets library=libname nolise; delete sdsname; run;

久しぶりにSAS

SAS

仕事はじまってます。 冬休みの9日間で生活リズムが狂いきってるので仕事は大変です。。。 /--以下メモ--/ windowsのSASだとLinux版と違い、カレントディレクトリがプログラムをおいている場所じゃないんです。 そのため"./〜.csv"みたいな相対パスによるア…

SASメモ ODS

SAS

通常 ods html file = "xxx"; proc print data= yyy; run; ods html close; 軽量版 obs html file = "xxx" style=minimal; proc print; ods html close;

SASメモ

SAS

標準偏差とN数 proc means data= XXX n std; var var1; output out= YYY n=var_n std=var_std; run;