You can set values of a Raster* object, when i is a vector of cell numbers, a Raster*, Extent, or Spatial* object.
These are shorthand methods that work best for relatively small Raster* objects. In other cases you can use functions such as calc and rasterize.
methods
Methods
See Also
calc , rasterize
Examples
r <- raster(ncol=10, nrow=5)values(r)<-1:ncell(r)*2r[1,]<-1r[,1]<-2r[1,1]<-3s <- stack(r, sqrt(r))s[s<5]<-NA