Donovan.8(RMark)
Donovan.8()所属R语言包:RMark
Exercise 8 example data
练习8示例数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
An example occupancy data set used as exercise 8 in the occupancy website developed by Donovan and Hines.
一个例子占用的数据集作为练习8的占用网站开发的多诺万和Hines。
格式----------Format----------
A data frame with 20 observations (sites) on the following 2
对以下2个数据框(点)20个观测
ch a character vector containing the counts
CH字符向量计数
freq frequency of sites (always 1)
网站的频率频率(= 1)
Details
详细信息----------Details----------
This is a data set from exercise 8 of Donovan and Hines occupancy web site (http://www.uvm.edu/envnr/vtcfwru/spreadsheets/occupancy/occupancy.htm). In MARK, it uses 2 digits to allow a count of 0 to 99 at each site, so the history has 10 digits for 5 visits (occasions).
这是一个数据集从8多诺万和Hines占用网站(http://www.uvm.edu/envnr/vtcfwru/spreadsheets/occupancy/occupancy.htm)的运动。 MARK,它使用2位数允许在每个站点的计数为0到99,所以历史上有10个数字为5次(次)。
实例----------Examples----------
# Donovan.8 can be created with[Donovan.8可以创建]
# Donovan.8=convert.inp("Donovan.8.inp")[Donovan.8 convert.inp(“Donovan.8.inp”)]
do.exercise.8=function()
{
data(Donovan.8)
# Results agree with the values on the website.[结果同意在网站上的值。]
Donovan.8.poisson=mark(Donovan.8,model="OccupRPoisson",invisible=FALSE,threads=2)
# The following model was not in exercise 8. The NegBin model does[下面的模型是不是在练习8。 NegBin模型不]
# better if it is initialized with the r and lambda from the poisson.[更好,如果它被初始化的r和λ的泊松。]
Donovan.8.negbin=mark(Donovan.8,model="OccupRNegBin",
initial=Donovan.8.poisson,invisible=FALSE,threads=2)
return(collect.models())
}
exercise.8=do.exercise.8()
# Remove # to see output[删除#输出]
# print(exercise.8)[打印(exercise.8)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|