[R] replace() in matrix

Uwe Ligges ligges at statistik.uni-dortmund.de
Mon Jul 2 20:19:28 CEST 2001



Tord Snall wrote:
> 
> Dear all,
> How do I replace values of a matrix, for exemple I want the matrix
> 
> 1       24      1       1       1
> 24      1       1       1       1
> 1       1       1       45      104
> 1       1       45      1       92
> 1       1       104     92      1
> 
> to be replaced by
> 
> 0       24      0       0       0
> 24      0       0       0       0
> 0       0       0       45      104
> 0       0       45      0       92
> 0       0       104     92      0
> 

A[A == 1] <- 0

Uwe Ligges
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)  To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._



More information about the R-help mailing list