variogram(SpatialExtremes)
variogram()所属R语言包:SpatialExtremes
Empirical variogram
实证变差函数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function computes the empirical variogram.
此函数计算变差函数的经验。
用法----------Usage----------
variogram(data, coord, n.bins, xlab, ylab, angles = NULL, 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.
的矩阵,使每一个位置的坐标。每一行对应于一个位置。
参数:n.bins
The number of bins to be used. If missing, pairwise madogram estimates will be computed.
箱的数目被使用。如果缺少,两两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。
参数:angles
A numeric vector. A partition of the interval (0, π) to help detecting anisotropy.
一个数值向量。分区的间隔(0, π)帮助检测各向异性。
参数: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功能的附加选项。
值----------Value----------
A graphic and (invisibly) a matrix with the lag distances and the empirical variogram estimates.
图形和矩阵(不可见)的滞后距离和经验变差函数估计。
(作者)----------Author(s)----------
Mathieu Ribatet
参见----------See Also----------
fmadogram, lmadogram
fmadogram,lmadogram
实例----------Examples----------
n.site <- 20
n.obs <- 100
coord <- matrix(runif(2 * n.site, 0, 10), ncol = 2)
data <- rgp(n.obs, coord, "powexp", sill = 2, range = 3, smooth = 1)
variogram(data, coord)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|