plotStatMap(flowPhyto)
plotStatMap()所属R语言包:flowPhyto
plot the stat.tab file on a map
绘制图stat.tab文件
译者:生物统计家园网 机器人LoveR
描述----------Description----------
plot the result of on a map
在图上绘制的结果
用法----------Usage----------
plotStatMap(df, pop, z.param, margin = 0.1, zlab = z.param, ma = 1, xlim= NULL, ylim=NULL, main=paste(pop, "-population"), track = NULL, ...)
参数----------Arguments----------
参数:df
dataframe of the summary data, ie stat.tab
dataframe汇总数据,即stat.tab
参数:pop
Name should match the one written in the stats.tab created by the Summarize function
名称应当符合在该stats.tab书面汇总函数创建一个
参数:z.param
parameter in the dataframe for which to plot the heatmap
参数在dataframe为其绘制热图
参数:zlab
the label for the values of the heatmap color gradient passed as 'col'
热图的颜色渐变值的标签通过了“山坳”
参数:margin
margin of longitude and latitude around edges of current position.
围绕当前位置边缘的经度和纬度的保证金。
参数:ma
number of periods to average over z.param
期数平均超过z.param
参数:xlim
limit of x axis
X轴的极限
参数:ylim
limit of y axis
Y轴的极限
参数:main
Plot title
图标题
参数:track
a dataframe of the cruise track (from the sds file) with longitude (long) and latitude (lat) named accordingly.
巡航轨迹(从SDS文件)(长)与经度和纬度(LAT)dataframe据此命名。
参数:...
additional arguments to be passed to the plot function
额外的参数被传递到绘图功能
值----------Value----------
returns a map of seaflow statistics
返回一个seaflow统计图
举例----------Examples----------
## load the data[#加载数据。]
stat.tab <- system.file("extdata","seaflow_cruise","stats.tab",
package="flowPhyto")
stats <- read.delim(stat.tab)
## plot the cell concentrations of the picoplankton population[#绘制的微微型浮游生物人口的单元浓度]
plotStatMap(df=stats ,pop='synecho', z.param='conc')
mtext(line=1, side=4, "cell concentration 10^6 cells / L")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|