sie(sharx)
sie()所属R语言包:sharx
Small Island Effect (SIE) via Breakpoint Regression
通过断点回归的小岛屿效应(SIE)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Fit a breakpoint regression model to data to find threshold for the small island effect (SIE) as described in Lomolino...
在一个断点回归模型拟合数据上找到小岛屿阈值效应(SIE)中描述的Lomolino ...
用法----------Usage----------
sie(S, A, method = "Nelder-Mead", ...)
sieplot(x, add = FALSE, ...)
参数----------Arguments----------
参数:S
untransformed species richness, vector.
未转换的物种丰富度,向量。
参数:A
untransformed area, vector.
未转换的区域,向量。
参数:x
a fitted model object of class 'sie'.
一个合适的模型对象类的SIE。
参数:method
optimization mathod.
优化积法。
参数:add
logcal, if lines should beadded to existing plot (TRUE), or a new plot is to be drawn (FALSE, default).
logcal,如果行beadded现有的图(TRUE),或者是要绘制一个新的绘图(FALSE,默认)。
参数:...
graphical arguments passed to plot.
图形参数传递给plot。
Details
详细信息----------Details----------
sie fits the breakpoint regression to the data, richness is log(S+0.5) transformed, area is log(A) transformed before analysis. There is a coef, summary, print method for fitted objects.
sie适合断点回归的数据,丰富log(S+0.5)转化,面积log(A)转化前分析。有一个coef,summary,print方法合身的对象。
sieplot plots the observed (transformed) data and the fitted line.
sieplot绘制所观察到的数据(变换)和拟合线。
值----------Value----------
An S4 object of class 'sie' inheriting from class 'mle'.
S4对象的类的SIE继承自类的极大似然估计“。
(作者)----------Author(s)----------
Peter Solymos
参考文献----------References----------
Towards a more general species-area relationship: diversity on all islands, great and small. Journal of Biogeography, 28, 431–445.
实例----------Examples----------
data(sardata)
DAT <- sardata$islands[sardata$islands$study=="abbott1978plant",]
(x <- sie(DAT$S, DAT$A))
coef(x)
summary(x)
sieplot(x)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|