代码搜索:Stepwise
找到约 97 项符合「Stepwise」的源代码
代码结果 97
www.eeworm.com/read/377891/9259145
sas yyexa403.sas
/* yyexa403.sas */
data de403;
input x1-x3 y;
cards;
38 47.5 23 66.0
41 21.3 17 43.0
34 36.5 21 36.0
35 18.0 14 23.0
31 29.5 11 27.0
34 14.2 9 14.0
29 21.0 4 12.0
32 10.0 8 7.6
www.eeworm.com/read/453400/7421751
sas stepdis1.sas
options nodate nonumber;
filename stepdis1 'd:\sasbook\cl4.dbf';
proc dbf db3=stepdis1;
title '1. Discriminant Analysis(STEPDISC method=stepwise)';
proc stepdisc method=stepwise all;
class c;
www.eeworm.com/read/152068/12146796
sas 例16-02程序.sas
data ex16_2;
input x1-x8 y @@;
cards;
3 1 0 1 0 0 1 1 0
2 0 1 1 0 0 1 0 0
2 1 0 1 0 0
www.eeworm.com/read/152068/12146798
lst 例18-05计算结果.lst
The SAS System 09:34 Monday, April 1, 2002 128
Canonical Discriminant Analysis
22 Observati
www.eeworm.com/read/414272/11122678
m q222.m
P=data1;
Y=data;
Plen=length(P);
Pvalue=0;
Pvalue1=0;
Pvalue2=0;
Pvalue3=0;
Pvalue4=0;
for i=1:Plen
mark = 0;
for j=1:9
if(P(i,j)==0)
mark=1;
end
www.eeworm.com/read/185445/9037909
m rstep.m
hald = [
7.0000 26.0000 6.0000 60.0000 78.5000;
1.0000 29.0000 15.0000 52.0000 74.3000;
11.0000 56.0000 8.0000 20.0000 104.3000;
11.0000 31.0000 8.0000
www.eeworm.com/read/375276/9365735
m rstep.m
hald = [
7.0000 26.0000 6.0000 60.0000 78.5000;
1.0000 29.0000 15.0000 52.0000 74.3000;
11.0000 56.0000 8.0000 20.0000 104.3000;
11.0000 31.0000 8.0000
www.eeworm.com/read/414272/11122614
m untitled.m
x=[1 7 26 6 60 ;
1 1 29 15 52 ;
1 11 56 8 20 ;
1 11 31 8 47;
1 7 52 6 33;
1 11 55 9 22;
1 3 71 17 6;
1 1 31 22 44;
1 2 54 18 22;
1 21 47 4 26;
1 1 40 2
www.eeworm.com/read/386257/8759123
m ex1130.m
%ex1130.m逐步回归
clc,clear
x0=[1 7 26 6 60 78.5
2 1 29 15 52 74.3
3 11 56 8 20 104.3
4 11 31 8 47 87.6
5 7 52 6 33 95.9
6 11 55 9 22 109.2
7 3 71 17 6 102.7
8 1 31 22 44 72.5
9 2 54 18 22 93.1
www.eeworm.com/read/377891/9259168
sas yydy421.sas
/* yydy421.sas */
data d411;
input x1-x4 y ;
cards;
7 26 6 60 78.5
1 29 15 52 74.3
11 56 8 20 104.3
11 31 8 47 87.6
7 52 6 33 95.9
11 55 9 22 109.2
3 71 17 6 102.7
1