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


R BOD 生化需氧量


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

说明

BOD DataFrame 有 6 行和 2 列,给出了水质评估中的生化需氧量与时间的关系。

用法

BOD

格式

该 DataFrame 包含以下列:

Time

给出测量时间(天)的数值向量。

demand

给出生化需氧量 (mg/l) 的数字向量。

例子


require(stats)
# simplest form of fitting a first-order model to these data
fm1 <- nls(demand ~ A*(1-exp(-exp(lrc)*Time)), data = BOD,
           start = c(A = 20, lrc = log(.35)))
coef(fm1)
fm1
# using the plinear algorithm  (trace o/p differs by platform)
## IGNORE_RDIFF_BEGIN
fm2 <- nls(demand ~ (1-exp(-exp(lrc)*Time)), data = BOD,
           start = c(lrc = log(.35)), algorithm = "plinear", trace = TRUE)
## IGNORE_RDIFF_END
# using a self-starting model
fm3 <- nls(demand ~ SSasympOrig(Time, A, lrc), data = BOD)
summary(fm3)

来源

贝茨,D.M.和瓦茨,D.G. (1988),非线性回归分析及其应用,Wiley,附录 A1.4。

最初来自 Marske (1967),《使用表面平方和的生化需氧量数据解释》硕士。论文,威斯康星大学麦迪逊分校。

相关用法


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