grid.points(grid)
grid.points()所属R语言包:grid
Draw Data Symbols
绘制数据符号
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions create and draw data symbols.
这些功能创建和绘制数据符号。
用法----------Usage----------
grid.points(x = stats::runif(10),
y = stats::runif(10),
pch = 1, size = unit(1, "char"),
default.units = "native", name = NULL,
gp = gpar(), draw = TRUE, vp = NULL)
pointsGrob(x = stats::runif(10),
y = stats::runif(10),
pch = 1, size = unit(1, "char"),
default.units = "native", name = NULL,
gp = gpar(), vp = NULL)
参数----------Arguments----------
参数:x
A numeric vector or unit object specifying x-values.
一个数值向量或单位对象指定x值。
参数:y
A numeric vector or unit object specifying y-values.
一个数值向量或单位对象指定的y值。
参数:pch
A numeric or character vector indicating what sort of plotting symbol to use. See points for the interpretation of these values.
一个数字或字符的向量,说明什么样的绘图符号使用。看到points这些值的解释。
参数:size
A unit object specifying the size of the plotting symbols.
A股对象指定的图形符号的大小。
参数:default.units
A string indicating the default units to use if x or y are only given as numeric vectors.
一个字符串,指示的默认单位使用,如果x或y只为数字向量。
参数: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 object (or NULL).
一个网格视口对象(或NULL)。
Details
详情----------Details----------
Both functions create a points grob (a graphical object describing points), but only grid.points draws the points (and then only if draw is TRUE).
这两个函数创建一个点格罗(图形对象描述点),但只有grid.points投篮点(然后只有draw是TRUE)。
值----------Value----------
A points grob. grid.points returns the value invisibly.
A点GROB。 grid.points返回无形的价值。
作者(S)----------Author(s)----------
Paul Murrell
参见----------See Also----------
Grid, viewport
电网,viewport
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|