最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

R語(yǔ)言相關(guān)分析和穩(wěn)健線性回歸分析

2021-03-01 23:21 作者:拓端tecdat  | 我要投稿

原文鏈接:http://tecdat.cn/?p=9484

目錄

怎么做測(cè)試

功率分析

介紹

下面以物種多樣性為例子展示了如何在R語(yǔ)言中進(jìn)行相關(guān)分析和線性回歸分析。

?

怎么做測(cè)試

相關(guān)和線性回歸示例

?


  1. Data = read.table(textConnection(Input),header=TRUE)

?

數(shù)據(jù)簡(jiǎn)單圖

??????????????????????????????????????????????????????????????????????

  1. plot(Species ~ Latitude,

  2. data=Data,

  3. pch=16,

  4. xlab = "Latitude",

  5. ylab = "Species")

?

?

?

相關(guān)性

可以使用?cor.test函數(shù)。它可以執(zhí)行Pearson,Kendall和Spearman相關(guān)。

?

皮爾遜相關(guān)

皮爾遜相關(guān)是最常見(jiàn)的相關(guān)形式。假設(shè)數(shù)據(jù)是線性相關(guān)的,并且殘差呈正態(tài)分布。

?

  1. cor.test( ~ Species + Latitude,?

  2. ???????? data=Data,

  3. ???????? method = "pearson",

  4. ???????? conf.level = 0.95)




  5. Pearson's product-moment correlation




  6. t = -2.0225, df = 15, p-value = 0.06134




  7. ?????? cor


  8. -0.4628844

?

?

肯德?tīng)栂嚓P(guān)

肯德?tīng)栔认嚓P(guān)是一種非參數(shù)檢驗(yàn),它不假設(shè)數(shù)據(jù)的分布或數(shù)據(jù)是線性相關(guān)的。它對(duì)數(shù)據(jù)進(jìn)行排名以確定相關(guān)程度。

?

?

  1. cor.test( ~ Species + Latitude,

  2. data=Data,

  3. method = "kendall",

  4. continuity = FALSE,

  5. conf.level = 0.95)




  6. Kendall's rank correlation tau




  7. z = -1.3234, p-value = 0.1857




  8. tau


  9. -0.2388326

?

?

?

斯皮爾曼相關(guān)

Spearman等級(jí)相關(guān)性是一種非參數(shù)檢驗(yàn),它不假設(shè)數(shù)據(jù)的分布或數(shù)據(jù)是線性相關(guān)的。它對(duì)數(shù)據(jù)進(jìn)行排序以確定相關(guān)程度,并且適合于順序測(cè)量。

?

?

?

?

?

線性回歸

線性回歸可以使用?lm函數(shù)執(zhí)行??梢允褂胠mrob函數(shù)執(zhí)行穩(wěn)健回歸。

?



  1. summary(model) ? ? ? ? ? ? ? ? ? ?# shows parameter estimates,

  2. # p-value for model, r-square




  3. Estimate Std. Error t value Pr(>|t|)


  4. (Intercept) ?585.145 ? ?230.024 ? 2.544 ? 0.0225 *


  5. Latitude ? ? -12.039 ? ? ?5.953 ?-2.022 ? 0.0613 .




  6. Multiple R-squared: ?0.2143, ?Adjusted R-squared: ?0.1619


  7. F-statistic: ?4.09 on 1 and 15 DF, ?p-value: 0.06134








  8. Response: Species


  9. Sum Sq Df F value ?Pr(>F)


  10. Latitude ?1096.6 ?1 ?4.0903 0.06134 .


  11. Residuals 4021.4 15

?

?

?

繪制線性回歸

?


  1. plot(Species ~ Latitude,

  2. data = Data,

  3. pch=16,

  4. xlab = "Latitude",

  5. ylab = "Species")


  6. abline(int, slope,

  7. lty=1, lwd=2, col="blue") ? ? # ?style and color of line

?

?

?

檢查模型的假設(shè)

?

?

?

線性模型中殘差的直方圖。這些殘差的分布應(yīng)近似正態(tài)。

?

?

?

?

?

殘差與預(yù)測(cè)值的關(guān)系圖。殘差應(yīng)無(wú)偏且均等。?

?

?

?

穩(wěn)健回歸

該線性回歸對(duì)響應(yīng)變量中的異常值不敏感。

?

?



  1. summary(model) ? ? ? ? ? ? ? ? ? ?# shows parameter estimates, r-square




  2. Estimate Std. Error t value Pr(>|t|)


  3. (Intercept) ?568.830 ? ?230.203 ? 2.471 ? 0.0259 *


  4. Latitude ? ? -11.619 ? ? ?5.912 ?-1.966 ? 0.0681 .




  5. Multiple R-squared: ?0.1846, ?Adjusted R-squared: ?0.1302






  6. anova(model, model.null) ? ? ? ? # shows p-value for model




  7. pseudoDf Test.Stat Df Pr(>chisq)


  8. 1 ? ? ? 15


  9. 2 ? ? ? 16 ? ?3.8634 ?1 ? ?0.04935 *

?

?

?

繪制模型

?

?

?

?

線性回歸示例

?

?



  1. summary(model) ? ? ? ? ? ? ? ? ? ?# shows parameter estimates,

  2. # p-value for model, r-square




  3. Coefficients:


  4. Estimate Std. Error t value Pr(>|t|)


  5. (Intercept) ?12.6890 ? ? 4.2009 ? 3.021 ? 0.0056 **


  6. Weight ? ? ? ?1.6017 ? ? 0.6176 ? 2.593 ? 0.0154 *




  7. Multiple R-squared: ?0.2055, ?Adjusted R-squared: ?0.175


  8. F-statistic: 6.726 on 1 and 26 DF, ?p-value: 0.0154




  9. ### ?Neither the r-squared nor the p-value agrees with what is reported


  10. ### ? ?in the Handbook.






  11. library(car)


  12. Anova(model, type="II") ? ? ? ? ? # shows p-value for effects in model




  13. Sum Sq Df F value Pr(>F)


  14. Weight ? ? 93.89 ?1 ?6.7258 0.0154 *


  15. Residuals 362.96 26




  16. # ? ? # ? ? #

?

?

功率分析

功率分析的相關(guān)性

?

  1. ### --------------------------------------------------------------

  2. ### Power analysis, correlation

  3. ### --------------------------------------------------------------


  4. pwr.r.test()




  5. approximate correlation power calculation (arctangh transformation)




  6. n = 28.87376

?


R語(yǔ)言相關(guān)分析和穩(wěn)健線性回歸分析的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
甘肃省| 湖口县| 阿拉善左旗| 澄城县| 许昌县| 双鸭山市| 项城市| 永丰县| 永德县| 汽车| 泽库县| 安义县| 闻喜县| 秦安县| 申扎县| 孝义市| 揭阳市| 定州市| 肃南| 高邮市| 三河市| 南郑县| 仙桃市| 嘉禾县| 论坛| 武穴市| 通州市| 廉江市| 鹿泉市| 中江县| 高青县| 无锡市| 嘉黎县| 吕梁市| 临清市| 新余市| 施秉县| 雅江县| 永吉县| 右玉县| 都兰县|