[R] how to skip a specific value when using apply() function to a matrix?

Wu Gong wg2f at mtmail.mtsu.edu
Fri Jul 16 19:04:56 CEST 2010


Hi szhan,

I think Joshua gives all you wants -- scale is a really good function.

You can also make your own function work by setting an argument na.rm.

tmp1[tmp1==0]<-NA 
student<- function(x){    
    x<-(x-mean(x,na.rm=T))/sd(x,na.rm=T)
    return (x)
}
tmp4<-apply(tmp1, 2, student)



-----
A R learner.
-- 
View this message in context: http://r.789695.n4.nabble.com/how-to-skip-a-specific-value-when-using-apply-function-to-a-matrix-tp2290898p2291678.html
Sent from the R help mailing list archive at Nabble.com.



More information about the R-help mailing list