na.omit {ursa} | R Documentation |
The bands with band_blank images, are omitted.
## S3 method for class 'ursaRaster' na.omit(object, ...)
object |
Object of class |
... |
Ignored. For consistence with definition of generic function. |
Object of class ursaRaster
, which has no bands without any data.
Nikita Platonov platonov@sevin.ru
session_grid(NULL) session_grid(regrid(mul=1/4)) a <- ursa_new(value=1:3) print(a) a[2] <- NA print(a) a2 <- na.omit(a) print(a2)