fmadogram(SpatialExtremes)
fmadogram()所属R语言包:SpatialExtremes
Computes the F-madogram
计算F-madogram的
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the F-madogram for max-stable processes.
计算F-madogram的最大稳定的过程。
用法----------Usage----------
fmadogram(data, coord, fitted, n.bins, which = c("mado", "ext"), xlab,
ylab, col = c(1, 2), angles = NULL, marge = "emp", add = FALSE, xlim =
c(0, max(dist)), ...)
参数----------Arguments----------
参数:data
A matrix representing the data. Each column corresponds to one location.
矩阵表示数据。每一列对应于一个位置。
参数:coord
A matrix that gives the coordinates of each location. Each row corresponds to one location.
的矩阵,使每一个位置的坐标。每一行对应于一个位置。
参数:fitted
An object of class maxstab - usually the output of the fitmaxstab function. May be missing.
对象的的类maxstab - 通常的输出fitmaxstab功能。可能会丢失。
参数:n.bins
The number of bins to be used. If missing, pairwise F-madogram estimates will be computed.
箱的数目被使用。如果缺少,两两的F-madogram估计将被计算。
参数:which
A character vector of maximum size 2. It specifies if the madogram and/or the extremal coefficient functions have to be plotted.
字符向量的最大大小为2。它指定如果的madogram和/或极值的系数函数要绘制。
参数:xlab,ylab
The x-axis and y-axis labels. May be missing. Note that ylab must have the same length has which.
x轴和y轴的标签。可能会丢失。请注意,ylab必须具有相同的长度有which。
参数:col
The colors used for the points and optionnaly the fitted curve.
所使用的颜色的点和任选是拟合曲线。
参数:angles
A numeric vector. A partition of the interval (-π, π) to help detecting anisotropy.
一个数值向量。分区的间隔(-π, π)帮助检测各向异性。
参数:marge
Character string. If 'emp', the probabilities of non exceedances are estimated using the empirical CDF. If 'mle' (default), maximum likelihood estimates are used.
字符的字符串。如果“EMP”,不超标的概率估计使用经验CDF。如果MLE(默认),最大似然估计的使用。
参数:add
Logical. If TRUE, the plot is added to the current figure; otherwhise (default) a new plot is computed.
逻辑。如果TRUE,该图目前的数字otherwhise(默认)一个新的绘图计算。
参数:xlim
A numeric vector of length 2 specifying the x coordinate range.
一个数值向量长度为2的指定的x坐标范围。
参数:...
Additional options to be passed to the plot function.
到传递给plot功能的附加选项。
Details
详细信息----------Details----------
Let Z(x) be a stationary process. The F-madogram is defined as follows:
让我们Z(x)是一个平稳过程。的F-madogram定义如下:
The extremal coefficient θ(h) satisfies:
θ(h)满足的极值系数:
值----------Value----------
A graphic and (invisibly) a matrix with the lag distances, the F-madogram and extremal coefficient estimates.
图形和矩阵(不可见)的滞后距离,的F-madogram和极值系数估计值。
(作者)----------Author(s)----------
Mathieu Ribatet
参考文献----------References----------
spatial max-stable random fields. Dependence in Probability and Statistics, 373–390.
参见----------See Also----------
madogram, lmadogram
madogram,lmadogram
实例----------Examples----------
n.site <- 15
locations <- matrix(runif(2*n.site, 0, 10), ncol = 2)
colnames(locations) <- c("lon", "lat")
##Simulate a max-stable process - with unit Frechet margins[#模拟一个最大稳定的过程 - 与单位的Frechet空间]
data <- rmaxstab(40, locations, cov.mod = "whitmat", nugget = 0, range = 1,
smooth = 2)
##Compute the F-madogram[#计算的F-madogram]
fmadogram(data, locations)
##Compare the F-madogram with a fitted max-stable process[#比较的F-madogram与合身的最大稳定过程]
fitted <- fitmaxstab(data, locations, "whitmat", nugget = 0)
fmadogram(fitted = fitted, which = "ext")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|