GeoBoxPlot(SpatialVx)
GeoBoxPlot()所属R语言包:SpatialVx
Geographic Box Plot
GEO范围框图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Make a geographic box plot as detailed in Willmott et al. (2007).
威尔莫特等人在做一个GEO箱线图。 (2007年)。
用法----------Usage----------
GeoBoxPlot(x, areas, ...)
参数----------Arguments----------
参数:x
numeric giving the values to be box-plotted.
数值给出的值是盒绘制。
参数:areas
numeric of same length as x giving the associated areas for each value.
数字相同的长度为x的每一个值给相关领域。
参数:...
optional arguments to the boxplot function of R. The argument plot is not allowed.
可选参数的boxplot功能的R.的参数图是不允许的。
Details
详细信息----------Details----------
This function makes the geographic box plots described in Willmott et al. (2007) that calculates the five statistics in such a way as to account for the associated areas (e.g., over a grid where each grid box may have differing areas).
此功能使GEO箱线图中描述的威尔莫特等人。 (2007年),以这样的方式计算五个统计帐户相关联的区域(例如,在一个网格,每个网格框可具有不同的区域)。
Missing values are not handled, and ideally should be handled before calling ths routine.
遗漏值处理,理想情况下应如何处理,然后再调用性住户统计调查常规。
In future, this function may allow other options for 'x' than currently, but for now, only numeric vectors are allowed.
在未来,这个功能可以让X比目前的其他选项,但现在,只有数字矢量被允许。
值----------Value----------
List with the same components as returned by boxplot.
经由boxplot与部件相同的部件的列表。
(作者)----------Author(s)----------
Eric Gilleland
参考文献----------References----------
参见----------See Also----------
boxplot
boxplot
实例----------Examples----------
##[#]
## Reproduce the boxplots of Fig. 1 in Willmott et al. (2007).[#重现盒形图图。 1在威尔莫特等。 (2007年)。]
##[#]
x <- c(4,9,1,3,10,6,7)
a <- c(rep(1,4),2,1,3)
boxplot( x, at=1, xlim=c(0,3))
GeoBoxPlot(x, a, at=2, add=TRUE)
axis( 1, at=c(1,2), labels=c("Traditional", "Geographic"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|