quantile.im(spatstat)
quantile.im()所属R语言包:spatstat
Sample Quantiles of Pixel Image
样品位数的像素图像
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Compute the sample quantiles of the pixel values of a given pixel image.
一个给定的像素的图像的像素值的计算样本分位数。
用法----------Usage----------
## S3 method for class 'im'
quantile(x, ...)
参数----------Arguments----------
参数:x
A pixel image. An object of class "im".
像素的图像。对象的类"im"。
参数:...
Optional arguments passed to quantile.default. They determine the probabilities for which quantiles should be computed. See quantile.default.
可选参数传递给quantile.default。他们确定的概率计算的位数。见quantile.default。
Details
详细信息----------Details----------
This simple function applies the generic quantile operation to the pixel values of the image x.
这个简单的函数应用于通用的quantile操作的像素值的图像x。
This function is a convenient way to inspect an image and to obtain summary statistics. See the examples.
此功能是一个方便的方式来检查图像,并获得汇总统计数据。见的例子。
值----------Value----------
A vector of quantiles.
一个向量的位数。
(作者)----------Author(s)----------
Adrian Baddeley
<a href="mailto:Adrian.Baddeley@csiro.au">Adrian.Baddeley@csiro.au</a>
<a href="http://www.maths.uwa.edu.au/~adrian/">http://www.maths.uwa.edu.au/~adrian/</a>
and Rolf Turner
<a href="mailto:r.turner@auckland.ac.nz">r.turner@auckland.ac.nz</a>
参见----------See Also----------
quantile, cut.im, im.object
quantile,cut.im,im.object
实例----------Examples----------
# artificial image data[人工图像数据]
Z <- setcov(square(1))
# find the quartiles[找到四分位数]
quantile(Z)
# find the deciles[找到十分位数]
quantile(Z, probs=(0:10)/10)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|