baycheck(UsingR)
baycheck()所属R语言包:UsingR
Population estimate of type of Bay Checkerspot butterfly
湾Checkerspot蝴蝶型的人口估计
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Estimates of the population of a type of Bay Checkerspot butterfly near San Francisco.
估计人口的旧金山湾附近的Checkerspot蝴蝶型的。
用法----------Usage----------
data(baycheck)
格式----------Format----------
A data frame with 27 observations on the following 2 variables.
27个观察以下2个变量的数据框。
year a numeric vector
今年的数字矢量
Nt estimated number
NT估计数
源----------Source----------
From chapter 4 of Morris and Doak, Quantitative Conservation Biology: Theory and Practice of Population Viability Analysis, Sinauer Associates, 2003.
从“莫里斯和多克,定量保护生物种群生存力的分析,Sinauer联营公司,2003年的理论与实践”第4章。
实例----------Examples----------
data(baycheck)
plot(Nt ~ year,baycheck)
## fit Ricker model N_{t+1} = N_t e^{-rt}W_t[#适合的的Ricker子模型N_ {T +1} = N_t E ^ {-RT} W_t]
n = length(baycheck$year)
yt = with(baycheck,log(Nt[-1]/Nt[-n]))
nt = with(baycheck,Nt[-n])
lm(yt ~ nt,baycheck)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|