cr1.sas
来自「SAS for Windows统计分析系统教程,里面有源码」· SAS 代码 · 共 14 行
SAS
14 行
options nodate nonumber;
title 'The analysis of correlation';
data cr1;
input x y @@/* x---Body Weight, y---Body surface area */;
cards;
11.0 5.283 11.8 5.299
12.0 5.358 12.3 5.292
13.1 5.602 13.7 6.014
14.4 5.830 14.9 6.102
15.2 6.075 16.0 6.411
;
proc corr/* pearson correlation */;
run;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?