species.count(untb)
species.count()所属R语言包:untb
Ecosystem diagnostics for output of untb()
生态系统诊断输出untb()
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Provides ecosystem diagnostics of species count datasets (species counts and species tables), useful for the output of untb()
提供生态系统诊断物种计数数据集(物种计数和物种表),用于输出untb()
用法----------Usage----------
species.count(x)
species.table(x)
参数----------Arguments----------
参数:x
An integer matrix whose rows are integers representing the individuals' species
一个整数矩阵,其行是整数,代表个人的种类
Details
详细信息----------Details----------
These functions takes a matrix argument, which is interpreted as the output of untb(...,keep=TRUE).
这些功能需要一个矩阵的说法,这被解释为输出untb(...,keep=TRUE)。
Function species.count() returns the total number of species present in each row (ie at each timestep).
功能species.count()返回总种数中的每一行(即在每一个时间步)。
Function species.table() returns a matrix M where M[i,j] column of the matrix is the abundance of species j at time i.
功能species.table()返回一个矩阵M:M[i,j]列的矩阵丰富的物种j时间i。
(作者)----------Author(s)----------
Robin K. S. Hankin
参见----------See Also----------
preston
preston
实例----------Examples----------
a <- untb(start=rep(1,50), prob=0.01, gens=2000, keep=TRUE)
plot(species.count(a),type="b")
matplot(species.table(a),type="l",lty=1)
jj <- a[2000,]
print(jj)
as.count(jj)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|