colorScale(RTools4TB)
colorScale()所属R语言包:RTools4TB
Calibration bar for color images
彩色图像校准栏
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function is the same as the maPalette function in the marray library. It is used to produce a color scale.
这个函数作为maPalette在marray库功能相同。用它来生产彩色规模。
用法----------Usage----------
colorScale(low = "white", high = c("green", "red"), mid = NULL, k = 50)
参数----------Arguments----------
参数:low
Color for the lower end of the color palette, specified using any of the three kinds of R colors, i.e., either a color name (an element of colors), a hexadecimal string of the form #rrggbb, or an integer i meaning palette()[i]
下端调色板的颜色,指定使用任何R的颜色,即三种,我无论是颜色的名称(元素的颜色),#rrggbb,或一个整数的形式十六进制字符串这意味着palette()[i]
参数:high
Color for the upper end of the color palette, specified using any of the three kinds of R colors, i.e., either a color name (an element of colors), a hexadecimal string of the form #rrggbb, or an integer i meaning palette()[i]
调色板上的颜色,指定使用任何R的颜色,即3种,无论是颜色的名称(元素的颜色)的形式#rrggbb,或一个整数的十六进制字符串我这意味着palette()[i]
参数:mid
Color for the middle portion of the color palette, specified using any of the three kinds of R colors, i.e., either a color name (an element of colors), a hexadecimal string of the form #rrggbb, or an integer i meaning palette()[i]
颜色调色板指定的中间部分,使用任何三种R的颜色,也就是说,无论是颜色的名称(颜色的元素),十六进制字符串的形式#rrggbb,或整数i这意味着palette()[i]
参数:k
Number of colors in the palette
调色板中的颜色数
作者(S)----------Author(s)----------
see the <code><a href="../../marray/html/maPalette.html">maPalette</a></code>
举例----------Examples----------
Rcol <- colorScale(low="white", high="red", k=10)
Gcol <- colorScale(low="white", high="green", k=50)
RGcol <- colorScale(low="green", high="red", k=100)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|