代码搜索:计数程序
找到约 10,000 项符合「计数程序」的源代码
代码结果 10,000
www.eeworm.com/read/152068/12146792
sas 例03-06程序.sas
/*用MEANS作配对资料两个样本均数比较的t检验*/
data ex3_6;
input x1 x2 @@;
d=x1-x2;
cards;
0.840 0.580
0.591 0.509
0.674 0.500
0.632 0.316
0.687 0.337
0.978 0.517
0.750
www.eeworm.com/read/152068/12146795
sas 例11-07程序.sas
data ex11_7;
input x a b c @@;
cards;
15.75 1 1 1
15.50 1 1 2
15.50 1 1 3
17.00 1 1 4
16.50 1 1 5
19.00
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/12146797
sas 例19-03程序.sas
/*样品聚类*/
data ex19_3;
input x1-x10;
cards;
46 25 5 2138 1.68 0.35 8.11 4 4 1
35 12 20 3510 2.76 1.43 6.84 3
www.eeworm.com/read/152068/12146804
sas 例09-08程序.sas
data ex9_8;
input x y;
cards;
0.03 0.05
0.14 0.34
0.20 0.93
0.43 0.69
0.44 0.38
0.45 0.79
0.47 1.19
0.65 4.74
0.95 2.31
0.96 5.95
2.44 1.11
2.69 3.53
3.07 3.48
7.78 5.65
9.82 33.95
www.eeworm.com/read/152068/12146807
sas 例15-01程序.sas
data ex15_1;
input x1-x4 y @@;
cards;
5.68 1.90 4.53 8.20 11.20
3.79 1.64 7.32 6.90 8.80
6.02 3.56 6.95 10.80 12.30
www.eeworm.com/read/152068/12146808
sas 例07-02程序.sas
data ex7_2;
input r c f @@;
cards;
1 1 46
1 2 6
2 1 18
2 2 8
;
proc freq;
weight f;
tables r*c
/chisq
expected;
run;
www.eeworm.com/read/152068/12146810
sas 例09-15程序.sas
data ex9_4;
input x y;
cards;
2 54
5 50
7 45
10 37
14 35
19 25
26 20
31 16
34 18
38 13
45 8
52 11
53 8
60
www.eeworm.com/read/152068/12146816
sas 例17-05程序.sas
data ex17_5;
input x1-x6 t y;
cards;
54 0 0 0 1 0 52 1
57 0 1 1 0 0 51 1
58 0 0 1 1 1 35
www.eeworm.com/read/152068/12146819
sas 例07-06程序.sas
data ex7_6;
input r c f @@;
cards;
1 1 199
1 2 7
2 1 164
2 2 18
3 1 118
3 2 26
;
proc freq;
weight f;
tables r*c
/chisq;
run;