logLik(SpatialExtremes)
logLik()所属R语言包:SpatialExtremes
Extracts Log-Likelihood
提取物对数似然
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extract the pairwise log-likelihood for objects of class
提取成对的对数似然类的对象
用法----------Usage----------
## S3 method for class 'maxstab'
logLik(object, ...)
## S3 method for class 'copula'
logLik(object, ...)
参数----------Arguments----------
参数:object
An object of class “maxstab” or “copula”. Most often this will be the output of the fitmaxstab of fitcopula functions.
对象的类的“maxstab”或“系词”。大多数情况下,这将是的输出fitmaxstabfitcopula功能中。
参数:...
Other arguments to be passed to the logLik function.
其他参数传递给logLik功能。
值----------Value----------
Standard logLik object (see logLik) except that it might actually correspond to the pairwise log-likelihood, e.g., for the class “maxstab”!
标准的logLik对象(见logLik)不同之处在于,它实际上可能对应成对的对数似然,例如,对于类的“maxstab”的!
(作者)----------Author(s)----------
Mathieu Ribatet
参见----------See Also----------
logLik
logLik
实例----------Examples----------
##Define the coordinates of each location[#定义的每个位置的坐标]
n.site <- 30
locations <- matrix(5 + runif(2*n.site, 0, 10), ncol = 2)
##Simulate a max-stable process - with unit Frechet margins[#模拟一个最大稳定的过程 - 与单位的Frechet空间]
data <- rmaxstab(30, locations, cov.mod = "whitmat", nugget = 0, range = 3,
smooth = 0.5)
fit <- fitmaxstab(data, locations, "whitmat")
logLik(fit)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|