Remifentanil
位於 nlme
包(package)。 說明
總共 65 名患者在不同時間段以不同速率靜脈輸注瑞芬太尼(一種強效鎮痛藥)。瑞芬太尼的濃度測量與幾個協變量一起進行,生成具有 2107 行和 12 列的 Remifentanil
DataFrame 。
用法
data("Remifentanil", package = "nlme")
格式
此 DataFrame (屬於 "groupedData"
類,特別是 "nfnGroupedData"
)包含以下列:
ID
:-
數字(患者)ID。
Subject
:-
具有 65 個級別的
ordered
因子(屬於ID
):30
<21
<25
<23
<29
< ... ... <36
<6
<5
<10
<9
。 Time
:-
從輸注開始的時間(以分鍾為單位)(
numeric
)。 conc
:-
瑞芬太尼濃度,單位為 [ng/ml](數字)。
Rate
:-
輸注速度[微克/分鍾]。
Amt
:-
當前時間間隔內給予的瑞芬太尼的量,以 [μg] 為單位。
Age
:-
患者的年齡(以年為單位)。
Sex
:-
患者的性別,級別為
Female
和Male
的factor
。 Ht
:-
患者身高(厘米)。
Wt
:-
患者體重(公斤)。
BSA
:-
體表麵積(DuBois 和 DuBois 1916):
. LBM
:-
瘦體重(James 1976),男性 和女性 的公式略有不同。
例子
plot(Remifentanil, type = "l", lwd = 2) # shows the 65 patients' remi profiles
## The same on log-log scale (*more* sensible for modeling ?):
plot(Remifentanil, type = "l", lwd = 2, scales = list(log=TRUE))
str(Remifentanil)
summary(Remifentanil)
plot(xtabs(~Subject, Remifentanil))
summary(unclass(table(Remifentanil$Subject)))
## between 20 and 54 measurements per patient (median: 24; mean: 32.42)
## Only first measurement of each patient :
dim(Remi.1 <- Remifentanil[!duplicated(Remifentanil[,"ID"]),]) # 65 x 12
LBMfn <- function(Wt, Ht, Sex) ifelse(Sex == "Female",
1.07 * Wt - 148*(Wt/Ht)^2,
1.1 * Wt - 128*(Wt/Ht)^2)
with(Remi.1,
stopifnot(all.equal(BSA, Wt^{0.425} * Ht^{0.725} * 0.007184, tol = 1.5e-5),
all.equal(LBM, LBMfn(Wt, Ht, Sex), tol = 7e-7)
))
## Rate: typically 3 µg / kg body weight, but :
sunflowerplot(Rate ~ Wt, Remifentanil)
abline(0,3, lty=2, col=adjustcolor("black", 0.5))
作者
of this help page: Niels Hagenbuch and Martin Maechler, SfS ETH Zurich.
來源
Pinheiro, J. C. 和 Bates, D. M. (2000)。 S 和 S-PLUS 的混合效果模型,紐約施普林格。
參考
Minto CF, Schnider TW, Egan TD, Youngs E, Lemmens HJM, Gambus PL, Billard V, Hoke JF, Moore KHP, Hermann DJ, Muir KT, Mandema JW, Shafer SL (1997). Influence of age and gender on the pharmacokinetics and pharmacodynamics of remifentanil: I. Model development. Anesthesiology 86 1, 10-23. https://pubs.asahq.org/anesthesiology/article/86/1/10/35947/Influence-of-Age-and-Gender-on-the
Charles F. Minto, Thomas W. Schnider and Steven L. Shafer (1997). Pharmacokinetics and Pharmacodynamics of Remifentanil: II. Model Application. Anesthesiology 86 1, 24-33. https://pubs.asahq.org/anesthesiology/article/86/1/24/35925/Pharmacokinetics-and-Pharmacodynamics-of
相關用法
- R Pixel X 射線像素強度隨時間的變化
- R corARMA ARMA(p,q) 相關結構
- R getGroupsFormula 提取分組公式
- R corRatio 有理二次相關結構
- R logLik.glsStruct glsStruct 對象的對數似然
- R intervals.lmList lmList 係數的置信區間
- R corLin 線性相關結構
- R plot.augPred 繪製 augPred 對象
- R print.varFunc 打印 varFunc 對象
- R recalc 重新計算壓縮線性模型對象
- R Variogram.corSpher 計算 corSpher 對象的半變異函數
- R getGroups.lme 提取 lme 對象組
- R nlmeStruct 非線性混合效應結構
- R predict.nlme 來自 nlme 對象的預測
- R corSymm 一般相關結構
- R qqnorm.gls gls 對象殘差的正態圖
- R pdCompSymm 具有複合對稱結構的正定矩陣
- R [.pdMat 下標 pdMat 對象
- R pdConstruct.pdBlocked 構造 pdBlocked 對象
- R gapply 按組應用函數
- R recalc.modelStruct 重新計算 modelStruct 對象
- R plot.nmGroupedData 繪製 nmGroupedData 對象
- R pdBlocked 正定分塊對角矩陣
- R recalc.corStruct 重新計算 corStruct 對象
- R varComb 方差函數的組合
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Pharmacokinetics of Remifentanil。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。