版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
1、第七章 t檢驗單樣本t檢測,用means、 univariatedata temp;input x;y=x-20.7;cards;20.99 20.41 20.10 20.00 20.91 22.6020.99 20.42 20.90 22.99 23.12 20.89;proc means mean stderr t probt;var y;run;data temp;input x;y=x-20.7;cards;20.99 20.41 20.10 20.00 20.91 22.6020.99 20.42 20.90 22.99 23.12 20.89;proc univariate nor
2、mal;var y;run;無原始數(shù)據(jù)的單樣本t檢驗:data temp;input u0 u1 s n;t=(u1-u0)/(s/sqrt(n);v=n-1;p=probt(t,v);cards;72 74.2 6.5 25;proc print;run;配對的t檢測:有兩個對比的檢測 有ttest means univariatedata temp;input id a b;cards;1 2.41 2.802 2.90 3.043 2.75 1.884 2.23 3.435 3.67 3.816 4.49 4.007 5.16 4.448 5.45 5.419 2.06 1.2410 1
3、.64 1.8311 1.06 1.4512 0.77 0.92;proc ttest;paired a*b;run;data temp;input id a b;y=a-b;cards;1 2.41 2.802 2.90 3.043 2.75 1.884 2.23 3.435 3.67 3.816 4.49 4.007 5.16 4.448 5.45 5.419 2.06 1.2410 1.64 1.8311 1.06 1.4512 0.77 0.92;proc univariate normal;var y;run;正態(tài)性檢測:w p ,t=0.162 pr=0.87>0.05,接受
4、h0;data temp;input id a b;y=a-b;cards;1 2.41 2.802 2.90 3.043 2.75 1.884 2.23 3.435 3.67 3.816 4.49 4.007 5.16 4.448 5.45 5.419 2.06 1.2410 1.64 1.8311 1.06 1.4512 0.77 0.92;proc means mean stderr t probt;var y;run;data temp;input d s n;t=d/(s/sqrt(n);v=n-1;p=probt(t,v);cards;0.625 0.78 8;proc print
5、;run;獨立樣本t檢測data temp;input group x;cards;1 134 1 146 1 104 1 119 1 124 1 161 1 107 1 83 1 113 1 129 1 97 1 1232 70 2 118 2 101 2 85 2 107 2 132 2 94proc ttest;class group;var x;run;data temp;input x1 x2 n1 n2 s1 s2;sc=sqrt(1/n1+1/n2)*(n1-1)*s1*2+(n2-1)*s2*2)/(n1+n2-2);t=(x2-x1)/sc;v=n1+n2-2;p=probt
6、(t,v);cards;20.95 21.79 20 20 5.89 3.43;proc print;run;第九章 直線回歸和相關(guān)data exam9_1;input x1 x2 ;cards;1.21 3.90 1.30 4.50 1.39 4.20 1.42 4.83 1.47 4.161.56 4.93 1.68 4.32 1.72 4.99 1.98 4.70 2.10 5.20;proc gplot; /*拓?fù)鋱D*/plot x2*x1='*' /*圖*/run;proc corr;var x1 x2;run;相關(guān)性 相關(guān)系數(shù)為:0.68073。 p為0.0303
7、data exm9_2;input x y;cards;79 45 80 30 91 16 90 24 70 28 87 25 92 14;proc corr spearman;var x y;run;直線回歸data exm9_3;input x y;cards;25.5 9.2 19.5 7.8 24.0 9.420.5 8.6 25.0 9.0 22.0 8.821.5 9.0 23.5 9.4 26.5 9.723.5 9.4 26.5 9.7 23.5 8.822.0 8.5 20.0 8.2 28.0 9.9;proc reg;model y=x/r clm; /*針對每一條的觀測
8、的輸出*/run;多元線性回歸data temp;input x1 x2 x3 y;cards;51.3 73.6 36.4 2.9948.9 83.9 34.0 3.1142.8 78.3 31.0 1.9155.0 77.1 31.0 2.6345.3 81.7 30.0 2.8645.3 74.8 32.0 1.9151.4 73.7 36.5 2.9853.8 79.4 37.0 3.2849.0 72.6 30.1 2.5253.9 79.5 37.1 3.27;proc reg;model y=x1 x2 x3/tol vif collin selection=stepwise r
9、;run;偏相關(guān)與復(fù)相關(guān)data exm10_2;input x1 x2 x3 x4 y;cards;7 26 6 60 78.51 29 15 52 74.3;proc corr;var x1 x2 x3 x4 y;run;proc corr nosimple;var x1 y;partial x2 x3 x4;run;proc corr nosimple;var x2 y;partial x1 x3 x4;run;proc corr nosimple;var x3 y;partial x2 x1 x4;run;proc corr nosimple;var x4 y;partial x2 x
10、3 x1;run;proc corr nosimple;var x1 x2 x3 y;partial x4;run;data exm10_2;input x1 x2 x3 x4 y;cards;7 26 6 60 78.51 29 15 52 74.311 56 8 20 104.311 31 8 47 87.67 52 6 33 95.9;proc corr;var x1 x2 x3 x4 y;run;proc corr nosimple;var x1 y;partial x2 x3 x4;run;proc corr nosimple;var x2 y;partial x1 x3 x4;ru
11、n;proc corr nosimple;var x3 y;partial x2 x1 x4;run;proc corr nosimple;var x4 y;partial x2 x3 x1;run;proc corr nosimple;var x1 x2 x3 y;partial x4;run;第十四章 非參數(shù)檢驗data exm10_2;input x1 x2 x3 x4 y;cards;7 26 6 60 78.51 29 15 52 74.311 56 8 20 104.311 31 8 47 87.67 52 6 33 95.9;proc corr;var x1 x2 x3 x4 y
12、;run;proc corr nosimple;var x1 y;partial x2 x3 x4;run;proc corr nosimple;var x2 y;partial x1 x3 x4;run;proc corr nosimple;var x3 y;partial x2 x1 x4;run;proc corr nosimple;var x4 y;partial x2 x3 x1;run;proc corr nosimple;var x1 x2 x3 y;partial x4;run;data exm4_2;input wt;devi=wt-2.15;cards;2.15 2.10
13、2.20 2.1.22.42 2.52 2.62 2.722.99 3.19 3.37 4.57;proc univariate; /單變量/var devi;run;p<0.05,小概率事件發(fā)生,拒絕h0,接受h1。配對的非參數(shù)的檢驗:data exm10_2;input x1 x2 x3 x4 y;cards;7 26 6 60 78.51 29 15 52 74.311 56 8 20 104.311 31 8 47 87.67 52 6 33 95.9;proc corr;var x1 x2 x3 x4 y;run;proc corr nosimple;var x1 y;part
14、ial x2 x3 x4;run;proc corr nosimple;var x2 y;partial x1 x3 x4;run;proc corr nosimple;var x3 y;partial x2 x1 x4;run;proc corr nosimple;var x4 y;partial x2 x3 x1;run;proc corr nosimple;var x1 x2 x3 y;partial x4;run;data exm4_2;input wt;devi=wt-2.15;cards;2.15 2.10 2.20 2.1.22.42 2.52 2.62 2.722.99 3.1
15、9 3.37 4.57;proc univariate; /單變量/var devi;run;data ex14_4;input x1 x2;d=x1-x2;cards;39 5542 5451 5543 4755 5345 6322 5248 4440 4845 5540 3249 57;proc univariate;var d;run;兩種非參數(shù)檢驗data ex14_6;input group veci;cards;1 2.78 1 3.23 1 4.2 1 4.87 1 5.121 6.21 1 7.18 1 8.05 1 8.56 1 9.62 3.23 2 3.5 2 4.04
16、2 4.15 2 4.282 4.34 2 4.47 2 4.64 2 4.75 2 4.822 4.95 2 5.10;proc nparlway wilcoxon;class group;var veci;run;data ex14_9;do group=1 to 3;input rate;output; end;cards;32.5 16.0 6.535.5 20.5 9.040.5 22.5 12.546.0 29.0 18.049.0 36.0 24.0;proc nparlway wilcoxon;class group;var rate;run;data ex14_12;do x
17、=1 to 4;do g=1 to 2;input f;output;end;end;cards;65 4218 630 2313 11;proc nparlway wilcoxon;calss g;var x;freq f ;run;data ex14_12;do x=1 to 4;do g=1 to 4;input f;output;end;end;cards;0 3 5 32 5 7 59 5 3 36 2 2 0 ;proc nparlway wilcoxon;calss g;var x;freq f ;run;data ex14_17;input x y ;cards;79 45 8
18、0 30 91 16 90 2470 28 87 25 92 14;proc corr spearman;var x y;run;data exm14_15;do block=1 to 8;do treat=1 to 4;input rate;output;end; end;cards;8.4 9.6 9.8 11.711.6 12.7 11.8 12.09.4 9.1 10.4 9.89.8 8.7 9.9 12.08.3 8.0 8.6 8.68.6 9.8 9.6 10.68.9 9.0 10.6 11.47.8 8.2 8.5 10.8;proc sort data=exm14_15 out=a;by block;run;proc rank data=a out=b;var rate;by block;ranks r;proc glm data=b;class treat block;model r=treat block;run;第十六章 主成分分析data e
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 醫(yī)療器械維修與更換程序
- 心理咨詢師聘用合同
- 2025農(nóng)村房屋轉(zhuǎn)讓合同協(xié)議書格式
- 咖啡館辦公空間租賃協(xié)議
- 2024年跨境電子商務(wù)服務(wù)合同協(xié)議
- 優(yōu)化鏈豬場租賃合同
- 2025工程施工居間合同書
- 鄉(xiāng)村道路改造聯(lián)合體招投標(biāo)案例
- 2025年硅系鐵合金項目合作計劃書
- 鋼結(jié)構(gòu)廠房施工合同:能源項目篇
- 永煤集團(tuán)順和煤礦液壓銷齒彎道推車機(jī)技術(shù)規(guī)格書
- 九型人格測試之180題(完整版)和答案解析
- 口內(nèi)病例分析
- 壓力管道內(nèi)審記錄(共5頁)
- LS-MASTER-K-指令手冊
- 堵蓋與膠貼在車身堵孔方面的應(yīng)用
- 清單計價規(guī)范附錄附表詳解PPT課件
- 光刻膠知識簡介
- 烏茲別克語字母表
- 微機(jī)室學(xué)生上機(jī)記錄
- 畢業(yè)設(shè)計(論文)基于單片機(jī)AT89C51的數(shù)字搶答器設(shè)計
評論
0/150
提交評論