Last chance! 50% off unlimited learning
Sale ends in
Get the number of rows, columns, or cells of a Raster* object.
ncol(x)
nrow(x)
ncell(x)
ncol(x, ...) <- value
nrow(x, ...) <- value
Integer
a Raster object
row or column number (integer > 0)
additional arguments. None implemented
dim, extent
, res
r <- raster()
ncell(r)
ncol(r)
nrow(r)
dim(r)
nrow(r) <- 18
ncol(r) <- 36
# equivalent to
dim(r) <- c(18, 36)
Run the code above in your browser using DataLab