作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法改变 R 中 NA 值的颜色?我屏蔽了光栅堆栈中的一些值,想知道是否可以将屏蔽值的颜色从白色更改为例如蓝色。黄色?我正在使用 plotRGB 绘制蒙版光栅文件。
最佳答案
我对plotRGB
不熟悉,但它也属于raster
包,功能相同colNA
,在?colNA
作为 “背景颜色(NA 值)”
。
library(raster)
#simulating missing values
tg<-matrix(1:15,nrow=3)
tg[2,3]<-NA
tg[1,5]<-NA
#rasterize
tg_raster<-raster(tg)
#normal plot
plot(tg_raster)
#replace NAs with blue color
plot(tg_raster,colNA="blue")
关于r - 使用掩码后 NA 值的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48808950/
我是一名优秀的程序员,十分优秀!