R語言
bacteria
位於 MASS
包(package)。 說明
對澳大利亞北領地患有中耳炎的兒童進行的流感嗜血杆菌細菌檢測。
用法
bacteria
格式
該 DataFrame 有 220 行和以下列:
- y
-
存在或不存在:級別為
n
和y
的因子。 - 美聯社
-
活性/安慰劑:具有
a
和p
水平的因子。 - 希洛
-
高/低合規性:具有
hi
和lo
級別的因子。 - 星期
-
數字:測試周。
- ID
-
主題 ID:一個因子。
- 特爾特
-
具有級別
placebo
、drug
和drug+
的因子,ap
和hilo
的重新編碼。
細節
A. Leach 博士對澳大利亞北領地 50 名有中耳炎病史的兒童測試了一種藥物的效果。這些孩子被隨機分配服用藥物或安慰劑,並接受積極鼓勵以遵守服用藥物的規定。
在第 0、2、4、6 和 11 周檢查了流感嗜血杆菌的存在:其中 30 項檢查缺失,未包含在此 DataFrame 中。
例子
contrasts(bacteria$trt) <- structure(contr.sdif(3),
dimnames = list(NULL, c("drug", "encourage")))
## fixed effects analyses
## IGNORE_RDIFF_BEGIN
summary(glm(y ~ trt * week, binomial, data = bacteria))
summary(glm(y ~ trt + week, binomial, data = bacteria))
summary(glm(y ~ trt + I(week > 2), binomial, data = bacteria))
## IGNORE_RDIFF_END
# conditional random-effects analysis
library(survival)
bacteria$Time <- rep(1, nrow(bacteria))
coxph(Surv(Time, unclass(y)) ~ week + strata(ID),
data = bacteria, method = "exact")
coxph(Surv(Time, unclass(y)) ~ factor(week) + strata(ID),
data = bacteria, method = "exact")
coxph(Surv(Time, unclass(y)) ~ I(week > 2) + strata(ID),
data = bacteria, method = "exact")
# PQL glmm analysis
library(nlme)
## IGNORE_RDIFF_BEGIN
summary(glmmPQL(y ~ trt + I(week > 2), random = ~ 1 | ID,
family = binomial, data = bacteria))
## IGNORE_RDIFF_END
來源
阿曼達·利奇博士通過詹姆斯·麥克布魯姆先生。
參考
Menzies School of Health Research 1999-2000 Annual Report. p.20. https://www.menzies.edu.au/icms_docs/172302_2000_Annual_report.pdf.
Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S. Fourth edition. Springer.
相關用法
- R bandwidth.nrd 通過正態參考分布得到的密度()帶寬
- R biopsy 乳腺癌患者的活檢數據
- R boxcox 線性模型的 Box-Cox 變換
- R beav1 海狸體溫係列1
- R birthwt 與嬰兒出生體重低相關的風險因子
- R bcv 帶寬選擇的有偏交叉驗證
- R beav2 海狸體溫係列2
- R summary.rlm 魯棒線性模型的總結方法
- R ginv 廣義逆矩陣
- R housing 哥本哈根住房條件調查的頻率表
- R predict.qda 根據二次判別分析進行分類
- R contr.sdif 連續差異對比編碼
- R Melanoma 惡性黑色素瘤的生存率
- R predict.glmmPQL glmmPQL 擬合的預測方法
- R ucv 帶寬選擇的無偏交叉驗證
- R theta.md 估計負二項式的 theta
- R parcoord 平行坐標圖
- R rlm 線性模型的穩健擬合
- R npk 經典 N、P、K 階乘實驗
- R Cars93 1993 年美國銷售的 93 輛汽車的數據
- R predict.lda 通過線性判別對多變量觀測值進行分類
- R geyser 老忠實間歇泉數據
- R summary.negbin 類“negbin”對象的摘要方法函數
- R Aids2 澳大利亞艾滋病生存數據
- R truehist 繪製直方圖
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Presence of Bacteria after Drug Treatments。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。