barplotCountryData(rworldmap)
barplotCountryData()所属R语言包:rworldmap
Barplot country-level data.
Barplot国家一级的数据。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Draw a barplot of country-level data, ranking the countries to allow easy comparison. This is useful for comparing with maps created by mapCountryData and accepts many of the same arguments for categorising and colouring.
绘制一个barplot,国家一级的数据,排名的国家,以方便比较。与图创建的mapCountryData和接受许多相同的参数进行分类和着色,这是非常有用的。
用法----------Usage----------
barplotCountryData( dF
, nameColumnToPlot = ""
, nameCountryColumn = "NAME"
, numPanels = 4
, scaleSameInPanels = FALSE
, main=nameColumnToPlot
, numCats = 5
, catMethod="quantiles"
, colourPalette= "heat"
, addLegend=TRUE
, toPDF = FALSE
, outFile = ""
, decreasing = TRUE
, na.last = TRUE
, ...
)
参数----------Arguments----------
参数:dF
a dataframe containing at least one column with numeric data and one with country names or other labels
一个数据框含有至少一列的数值数据,和一个与国名或其他标签
参数:nameColumnToPlot
name of column containing the data you want to plot
列名包含要绘制的数据
参数:nameCountryColumn
name of column containing country names (or other labels to be used in plot)
列包含国名的名称(或其他可以使用的标签,在图)
参数:numPanels
the number of layout panels in the plot
布局面板中的图
参数:scaleSameInPanels
whether to set the scale the same in each panel TRUE/FALSE, default=FALSE allowing more of the variability in the data to be viewed
是否设置比例相同,每个面板TRUE / FALSE,默认= FALSE让更多的变异中的数据被视为
参数:main
title for the plot
标题积
参数:numCats
number of categories to put the data in, may be modified if this number is incompatible with the catMethod chosen
类别中的数据,可能会被修改,如果这个数字是不符合catMethod选择
参数:catMethod
method for categorisation of data "pretty", "fixedWidth", "diverging", "logfixedWidth","quantiles","categorical", or a numeric vector defining breaks
“漂亮”,“固定宽度”,“分歧”,“logfixedWidth”,“位数”,“分类”,或一个数值向量定义中断的数据进行分类方法
参数:colourPalette
a string describing the colour palette to use, choice of : <ol> ="palette" for the current palette
一个字符串来描述使用的调色板,选择:<OL> =当前的调色板“调色板”
a vector of valid colours, e.g. =c('red','white','blue') or output from RColourBrewer
一个向量的有效的颜色,例如= C(红,白,蓝)或RColourBrewer输出
= one of "heat","diverging","white2Black","black2White","topo","rainbow","terrain","negpos8","negpos9" </ol>
= 1, </ OL>
参数:addLegend
NOT YET WORKING whether to add a legend or not, TRUE/FALSE
没有工作是否添加图例,TRUE / FALSE
参数:toPDF
whether to output the plot to a pdf rather than the screen, TRUE/FALSE
图是否输出为PDF,而不是在屏幕上,TRUE / FALSE
参数:outFile
output filename if toPDF=TRUE
输出文件名,如果toPDF = TRUE
参数:decreasing
logical. Should the sort order be increasing or decreasing?
逻辑。如果排序顺序是增加还是减少?
参数:na.last
for controlling the treatment of NAs. If TRUE, missing values in the data are put last; if FALSE, they are put first; if NA, they are removed.
为控制处理来港定居。如果是TRUE,缺失值的数据放在最后,如果为FALSE,他们先放,如果不适用,删除它们。
参数:...
other arguments to pass to barplot
其他参数传递给barplot
Details
详细信息----------Details----------
Finer control can be achieved by addMapLegend.
更精确地控制可以通过addMapLegend。
值----------Value----------
invisibly returns a list containing the data and main options used for the map, the list can be passed to addMapLegend or addMapLegendBoxes along with additional options to allow greater flexibility in legend creation.
无形地返回一个列表,其中包含的数据,主要用于图的选项,这个列表可以通过addMapLegend或addMapLegendBoxes传说中的创造额外的选项允许更大的灵活性。
警告----------Warning----------
will generate unhelpful errors in data categorisation if inappropriate options are chosen, e.g. with catMethoduantiles if numCats too high so that unique breaks cannot be defined.
会产生无用的数据分类中的错误如果选择了不恰当的选项,例如: catMethod:位数如果numCats过高,所以不能被定义,独特的截断。
(作者)----------Author(s)----------
andy south
参见----------See Also----------
classInt, RColorBrewer
classInt,RColorBrewer
实例----------Examples----------
#default uses popn data in the default map[默认使用POPN的默认的图数据在]
barplotCountryData()
data("countryExData",envir=environment(),package="rworldmap")
barplotCountryData( countryExData
, nameColumnToPlot="BIODIVERSITY"
, nameCountryColumn = "Country"
)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|