用sas分析响应面法数据时具体的sas程式是什?最好能有sas分析结果的讲解.

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/03 23:49:32
用sas分析响应面法数据时具体的sas程式是什?最好能有sas分析结果的讲解.

用sas分析响应面法数据时具体的sas程式是什?最好能有sas分析结果的讲解.
用sas分析响应面法数据时具体的sas程式是什?最好能有sas分析结果的讲解.

用sas分析响应面法数据时具体的sas程式是什?最好能有sas分析结果的讲解.
SAS中的proc rsreg,详细可以查看帮助文档.文档中有例子也有结果解释.
注意:查找proc rsreg
代码如下:
title 'Response Surface with a Simple Optimum';
data smell;
input Odor T R H @@;
label
T = "Temperature"
R = "Gas-Liquid Ratio"
H = "Packing Height";
datalines;
66 40 .3 4 39 120 .3 4 43 40 .7 4 49 120 .7 4
58 40 .5 2 17 120 .5 2 -5 40 .5 6 -40 120 .5 6
65 80 .3 2 7 80 .7 2 43 80 .3 6 -22 80 .7 6
-31 80 .5 4 -35 80 .5 4 -26 80 .5 4
;
proc rsreg data=smell;
model Odor = T R H / lackfit;
run;

design expert是专一的响应面分析,操作简单,一不小心就会用的,造论文最佳工具之一,呵呵。SAS也容易,但对初学者而肯定是design expert方便了 dx