gpt4 book ai didi

r - 以红色、绿色或蓝色级别绘制

转载 作者:行者123 更新时间:2023-12-04 11:08:35 28 4
gpt4 key购买 nike

有没有办法使用函数 plot() 绘制矩阵/图像,红色或绿色或蓝色级别,就像颜色选项 grey(level, alpha = NULL) ?

灰度级介于 0(黑色)和 1(白色)之间。

我正在寻找与 RGB 相同的东西:

  • 红色级别介于 0(红色)和 1(白色)之间。
  • 绿色级别介于 0(绿色)和 1(白色)之间。
  • 蓝色级别介于 0(蓝色)和 1(白色)之间。

我该怎么做?

最佳答案

您可以使用 colorRampPalette()(将 "red" 替换为 "blue""green"根据需要):

 ## Matrix from ?image
x <- y <- seq(-4*pi, 4*pi, len = 27)
r <- sqrt(outer(x^2, y^2, "+"))

## Plot it using a palette of your choice
image(z = z <- cos(r^2)*exp(-r/6),
col = colorRampPalette(c("white", "red"))(64))

enter image description here

关于r - 以红色、绿色或蓝色级别绘制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20358615/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com