當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R infert 自然流產和人工流產後不孕


R語言 infert 位於 datasets 包(package)。

說明

這是一項匹配的 case-control 研究,可追溯到條件邏輯回歸可用之前。

用法

infert

格式

1. Education 0 = 0-5 年
1 = 6-11 歲
2 = 12+ 年
2. age 案件年齡(歲)
3. parity count
4. 先前的數量0 = 0
人工流產1 = 1
2 = 2 或更多
5. 案件狀態1 = 案例
0 = 控製
6. 先前的數量0 = 0
自然流產1 = 1
2 = 2 或更多
7. 匹配的集合數1-83
8. 層數1-63

注意

省略了 1 例既往有 2 次自然流產和 2 次人工流產的病例。

例子

require(stats)
model1 <- glm(case ~ spontaneous+induced, data = infert, family = binomial())
summary(model1)
## adjusted for other potential confounders:
summary(model2 <- glm(case ~ age+parity+education+spontaneous+induced,
                     data = infert, family = binomial()))
## Really should be analysed by conditional logistic regression
## which is in the survival package
if(require(survival)){
  model3 <- clogit(case ~ spontaneous+induced+strata(stratum), data = infert)
  print(summary(model3))
  detach()  # survival (conflicts)
}

來源

Trichopoulos 等人 (1976) Br。 J. of Obst。和婦科。 83、645-650。

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Infertility after Spontaneous and Induced Abortion。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。