Hi R user, 
Would you give me some hints on to standardize the raster image (GeoTiff). I 
used the following code but did not work. would you give me some hints on it?

#----------------------------------
#code
# center with 'apply()'
center_apply <- function(x) {
    apply(x, 2, function(y) y - mean(y))
}
# import data
im1<-("image1.tif")
im2<-("image2.tif")
image<-stack(im1,im2)

# standardize (a mean of zero and unit variance) of the rasetr images 
st<-center_apply(image)

but it did not work. any suggestions?




                                          
        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to