grid.xaxis(grid)
grid.xaxis()所属R语言包:grid
Draw an X-Axis
画出X轴
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions create and draw an x-axis.
这些功能创建和绘制x轴。
用法----------Usage----------
grid.xaxis(at = NULL, label = TRUE, main = TRUE,
edits = NULL, name = NULL,
gp = gpar(), draw = TRUE, vp = NULL)
xaxisGrob(at = NULL, label = TRUE, main = TRUE,
edits = NULL, name = NULL,
gp = gpar(), vp = NULL)
参数----------Arguments----------
参数:at
A numeric vector of x-value locations for the tick marks.
一个数值向量x值的刻度位置。
参数:label
A logical value indicating whether to draw the labels on the tick marks, or an expression or character vector which specify the labels to use. If not logical, must be the same length as the at argument.
一个逻辑值,指示是否将画上的刻度,或者一个表达式或字符向量的指定标签使用的标签。如果不符合逻辑的,必须作为at参数的长度相同。
参数:main
A logical value indicating whether to draw the axis at the bottom (TRUE) or at the top (FALSE) of the viewport.
一个逻辑值,指明是否绘制轴在底部(TRUE),或在视口的顶部(FALSE)。
参数:edits
A gEdit or gEditList containing edit operations to apply (to the children of the axis) when the axis is first created and during redrawing whenever at is NULL.
一个gedit或gEditList包含编辑业务申请(轴子女)轴时,首先创建和在重绘时at是NULL。
参数:name
A character identifier.
字符识别。
参数:gp
An object of class gpar, typically the output from a call to the function gpar. This is basically a list of graphical parameter settings.
一个类的对象gpar,通常从调用输出函数gpar。这基本上是一个图形参数设置列表。
参数:draw
A logical value indicating whether graphics output should be produced.
一个逻辑值,指示是否应当制作图形输出。
参数:vp
A Grid viewport obect (or NULL).
一个电网obect视口(或NULL)。
Details
详情----------Details----------
Both functions create an xaxis grob (a graphical object describing an xaxis), but only grid.xaxis draws the xaxis (and then only if draw is TRUE).
这两个函数创建一个X轴,GROB(图形对象描述x轴),但只有grid.xaxis绘制x轴(然后只有draw是TRUE)。
值----------Value----------
An xaxis grob. grid.xaxis returns the value invisibly.
x轴GROB。 grid.xaxis返回无形的价值。
孩子----------Children----------
If the at slot of an xaxis grob is not NULL then the xaxis will have the following children:
如果不是一个X轴GROB插槽atNULL然后X轴将有以下的儿童:
major representing the line at the base of the
主要代表,在基础线
ticks representing the tick marks.
刻度线代表的刻度。
labels representing the tick labels.
代表的刻度标记的标签。
If the at slot is NULL then there are no children and ticks are drawn based on the current viewport scale.
如果at插槽NULL然后有没有孩子,刻度线当前视口比例的基础上得出的。
作者(S)----------Author(s)----------
Paul Murrell
参见----------See Also----------
Grid, viewport, grid.yaxis
电网,viewport,grid.yaxis
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|