当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R DNase DNase 的 Elisa 测定


R语言 DNase 位于 datasets 包(package)。

说明

DNase DataFrame 包含 176 行和 3 列的数据,这些数据是在开发大鼠血清中重组蛋白 DNase 的 ELISA 测定过程中获得的。

用法

DNase

格式

类的对象c("nfnGroupedData", "nfGroupedData", "groupedData", "data.frame")包含以下列:

运行

有序因子,其水平 10 < ... < 3 指示测定运行。

浓度

给出已知蛋白质浓度的数值向量。

密度

给出测定中测量的光密度(无量纲)的数值向量。获得重复的光密度测量结果。

细节

该数据集最初是包 nlme 的一部分,并且具有用于其分组数据类的方法(包括 [as.data.frameplotprint )。

例子

require(stats); require(graphics)

coplot(density ~ conc | Run, data = DNase,
       show.given = FALSE, type = "b")
coplot(density ~ log(conc) | Run, data = DNase,
       show.given = FALSE, type = "b")
## fit a representative run
fm1 <- nls(density ~ SSlogis( log(conc), Asym, xmid, scal ),
    data = DNase, subset = Run == 1)
## compare with a four-parameter logistic
fm2 <- nls(density ~ SSfpl( log(conc), A, B, xmid, scal ),
    data = DNase, subset = Run == 1)
summary(fm2)
anova(fm1, fm2)

来源

Davidian, M. 和 Giltinan, D. M. (1995) 重复测量数据的非线性模型,Chapman & Hall(第 5.2.4 节,第 134 页)

Pinheiro, J. C. 和 Bates, D. M. (2000) S 和 S-PLUS 中的混合效应模型,Springer。

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Elisa assay of DNase。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。