print.lnre(zipfR)
print.lnre()所属R语言包:zipfR
Printing LNRE Models (zipfR)
打印的LNRE模型(zipfR)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Implementations of the print and summary methods for LNRE models (subclasses of lnre).
实现print和summary方法为LNRE模型(子lnre)。
用法----------Usage----------
## S3 method for class 'lnre'
print(x, ...)
## S3 method for class 'lnre'
summary(object, ...)
参数----------Arguments----------
参数:x, object
an object of class lnre or one of its subclasses, representing a LNRE model
一个对象的类lnre“或者它的子类,较LNRE模型
参数:...
other arguments passed on from generic method will be ignored
从泛型方法传递的参数将被忽略
Details
详细信息----------Details----------
NB: implementation details and format of the summary are subject to change in future releases
NB:实施细节和形式的总结是在将来的版本中如有变更,
In the current implementation, print and summary produce the same output for LNRE models.
在目前的实现,print和summary产生的相同的输出为LNRE模型。
This summary comprises the type of LNRE model, its parameter values, derived parameters such as normalization constants, and the population size S.
此概要包括的类型的LNRE模型,其参数值,得出的参数,如归一化常数,人口规模S。
If the model parameters have been estimated from an observed frequency spectrum, a comparison of the observed and expected frequency spectrum is shown, including goodness-of-fit statistics.
如果从观察到的频率频谱模型参数的估计,比较观察到的和预期的频谱被示出,包括善良的配合统计。
值----------Value----------
NULL
NULL
Unlike other implementations of the summary method, summary.lnre only prints a summary on screen and does not return a special "summary" object.
与其他实现summary方法,summary.lnre只打印在屏幕上的一个总结,不返回一个特殊的“总结”的对象。
参见----------See Also----------
See the lnre manpage for more information on LNRE models.
lnre用户手册以获取更多信息LNRE模型。
实例----------Examples----------
# load Brown verbs dataset and estimate lnre models[加载布朗动词资料集和估计lnre的模型]
data(BrownVer.spc)
zm <- lnre("zm",BrownVer.spc)
fzm <- lnre("fzm",BrownVer.spc,exact=FALSE)
gigp <- lnre("gigp",BrownVer.spc)
# look at summaries with either summary or print[看,无论是总结或打印摘要]
summary(zm)
print(zm)
summary(fzm)
print(fzm)
summary(gigp)
print(gigp)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|