gray.colors(grDevices)
gray.colors()所属R语言包:grDevices
Gray Color Palette
灰色调色板
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Create a vector of n gamma-corrected gray colors.
创建一个n伽玛校正灰色的向量。
用法----------Usage----------
gray.colors(n, start = 0.3, end = 0.9, gamma = 2.2)
grey.colors(n, start = 0.3, end = 0.9, gamma = 2.2)
参数----------Arguments----------
参数:n
the number of gray colors (≥ 1) to be in the palette.
灰色的颜色数(≥ 1)在调色板。
参数:start
starting gray level in the palette (should be between 0 and 1 where zero indicates "black" and one indicates "white").
调色板中的灰度级(开始之间应该是0和1其中零表示"black"“和一个指示"white")。
参数:end
ending gray level in the palette.
结束在调色板中的灰度级。
参数:gamma
the gamma correction.
伽马校正。
Details
详情----------Details----------
The function gray.colors chooses a series of n gamma-corrected gray levels between start and end: seq(start^gamma, end^gamma, length = n)^(1/gamma). The returned palette contains the corresponding gray colors. This palette is used in barplot.default.
功能gray.colors选择了nstart和end之间的伽玛校正灰度级系列:seq(start^gamma, end^gamma, length = n)^(1/gamma)。返回的调色板包含了相应的灰色。这个调色板用于在barplot.default。
grey.colors is an alias for gray.colors.
grey.colors是gray.colors别名。
值----------Value----------
A vector of n gray colors.
n灰色向量。
参见----------See Also----------
gray, rainbow, palette.
gray,rainbow,palette。
举例----------Examples----------
require(graphics)
pie(rep(1,12), col = gray.colors(12))
barplot(1:12, col = gray.colors(12))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|