作者:季启建_392 | 来源:互联网 | 2023-05-24 10:24
1> Steven..:
如果您正在寻找颜色的灰度矢量,您可以使用gray.scale()
以下col
参数plot()
:
library(raster)
r <- raster(matrix(rnorm(100), 10))
plot(r, col = gray.colors(10, start = 0.3, end = 0.9, gamma = 2.2, alpha = NULL))
你得到了绿色,plot()
因为默认col
使用
rev(terrain.colors(255))