代码搜索:proc

找到约 10,000 项符合「proc」的源代码

代码结果 10,000
www.eeworm.com/read/252193/12294447

c uptime.c

/* GNU's uptime. Copyright (C) 1992-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
www.eeworm.com/read/150065/12318861

sas glm5_15_1.sas

proc glm data=data_prg.glm5_15; class a b c d e ; model y1-y4= a b c d e ; run; quit;
www.eeworm.com/read/150065/12318868

sas reg6_4.sas

data data_prg.reg6_4; input n po k y @@; label n="氮肥" po="磷肥" k="钾肥" y="施肥利润"; npk=n+po+k; cards; 0 8 18 414.3 8 20 6 492 16 8 30 531.5 24 20 12 655.7 32 4
www.eeworm.com/read/150065/12318880

sas nlin6_14.sas

title '负指数函数:Y=B0*(1-EXP(B1*X))' ; DATA NLIN6_16; INPUT X Y @@; CARDS; 020 0.57 030 0.72 040 0.81 050 0.87 060 0.91 070 0.94 080 0.95 090 0.97 100 0.98 110 0.99 120 1.00
www.eeworm.com/read/150065/12318992

sas ttest4_1.sas

proc ttest data=data_prg.ttest4_1; class sex; var body carcass; title 'sas ttest for test'; run;
www.eeworm.com/read/150065/12319030

sas corr6_3.sas

data corr6_3; input y x1 x2 x3 x4 @@; cards; 29.68 12.55 9.54 15.78 11.5 61.7 14.23 11.22 20.13 16.46 51.19 16.32 12.23 22.79 18.39 52.9 17.29 13.65 20.49 17.7 51.07
www.eeworm.com/read/150065/12319134

sas varclus7_1.sas

data varclus7_1; input num area x1 x2 x3 x4 x5 x6; cards; 1 北京 190.33 43.77 7.93 60.54 49.01 90.4 2 天津 135.2 36.4 10.47 44.16 36.49 3.94 3 河北 95.21 22.8 3 9.3 22.44 22.81 2.8 4 山西 104.78 25.11
www.eeworm.com/read/150065/12319142

sas ttest4_11.sas

data ttest4_11; input treat $ num @@; lg10nu=log10(num); /* 进行以10为底的对数变换 */ cards; a 200 a 200 a 400 a 400 a 400 a 800 a 800 a 800 a 1600 a 1600 a 3200 b 100 b 200 b 200 b
www.eeworm.com/read/150065/12319214

sas anovazhjiao5_17.sas

data anovazhjiao5_17; input a b c e d y @@; cards; 1 1 1 1 1 569 1 1 2 2 2 554 1 1 3 3 3 637 1 2 1 2 3 566 1 2 2 3 1 565 1 2 3 1 2 648 1 3 1 3 2 581 1 3 2 1 3 568 1 3 3 2 1 535 2 1 1 1 1 593
www.eeworm.com/read/150065/12319217

sas ladingfang_cow5_10.sas

PROC anova data=ccc.ladf_cow; CLASS silao date no; MODEL out=silao date no ; means silao date no /bon regwq t; RUN; quit;