📄 fxxhg2.sas
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -