NLBEST 格式會根據地區設定的小數點和正負符號的位置,來寫入最佳數值。NLBEST 與 BEST 輸出格式類似。
如需詳細資訊,請參閱 SAS Formats and Informats: Reference 中的 BEST 輸出格式。
範例
下列代碼會根據地區設定來產生結果:
x=-1257000
put x nlbest6.;
put x nlbest3.;
put "=====";
x=-0.1
put x nlbest6.;
put x nlbest3.;
put "=====";
x=0.1
put x nlbest6.;
put x nlbest3.;
put "=====";
x=1257000
put x nlbest6.;
put x nlbest3.;