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 islands 世界主要陸地的區域
- R iris 埃德加·安德森的虹膜數據
- R WorldPhones 世界電話
- R DNase DNase 的 Elisa 測定
- R ability.cov 能力和智力測試
- R UCBAdmissions 加州大學伯克利分校學生招生
- R Nile 尼羅河的流量
- R Titanic 泰坦尼克號乘客的生還
- R HairEyeColor 統計學學生的頭發和眼睛顏色
- R volcano 奧克蘭芒加瓦烏火山地形信息
- R discoveries 每年重要發現的數量
- R USArrests 美國各州的暴力犯罪率
- R CO2 草植物的二氧化碳吸收
- R UKgas 英國季度天然氣消耗量
- R chickwts 按飼料類型劃分的雞體重
- R BOD 生化需氧量
- R mtcars Motor Trend 汽車道路測試
- R attitude Chatterjee – 價格態度數據
- R ToothGrowth 維生素C對豚鼠牙齒生長的影響
- R BJsales 領先指標銷售數據
- R rock 石油岩石樣品的測量
- R warpbreaks 織造過程中紗線的斷頭數
- R longley 朗利的經濟回歸數據
- R quakes 斐濟附近發生地震的地點
- R trees 黑櫻桃樹的直徑、高度和體積
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Infertility after Spontaneous and Induced Abortion。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。