fxxhg2.sas

来自「those are some program of the sas system」· SAS 代码 · 共 11 行

SAS
11
字号
title'非线性回归线性化';
data ex;input x y @@;
x1=1/x;lx=log(x);ly=log(y);
cards;
1 1.85 2 1.37 3 1.02 4 0.75 4 0.56
6 0.41 6 0.31 8 0.23 8 0.17
;
proc plot;plot y*x='*';
proc reg;model y=x1;
proc reg;model ly=lx;
proc reg;model ly=x;run;

⌨️ 快捷键说明

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