stand.sas

来自「SAS for Windows统计分析系统教程,里面有源码」· SAS 代码 · 共 15 行

SAS
15
字号
options nodate nonumber;
title '1. observation';
data stand;
  input x@@;
cards;
7.43 7.88 6.88 7.80 7.04 8.05 8.05 6.97 7.12 7.35 7.95 7.56
;
proc print;
run;
title '2. standard data';
proc standard m=0 s=1;
  var x;
proc print;
run;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?