Is there a more "R-minded" way to dichotomise efficiently? Thanks.
y<-c(0,3,2,1,0,0,2,5,0,1,0,0);b<-vector()
for (k in 1:length(y)) {
if (y[k] == 0) b[k] = 0
else
b[k] = 1
}
y;b
|
|
Is there a more "R-minded" way to dichotomise efficiently? Thanks.
|
||||
|
|
|
|
||||
|
|
|
You have something that works. Are you worried about speed for some reason? Here's an alternative:
|
||
|
|
|
Try this:
This is efficient because y and b are the same size and rep() is very fast/vectorized. Edit:Here's another approach:
The ifelse() function is also vectorized. |
||||||||||||
|
|
|
Use ifelse(). This is vectorized and (edit: somewhat) fast.
Edit 2: This approach is less fast than the as.numeric(y!=0) approach.
But to some, ifelse may be trivially more readable than the as.numeric approach. Note the OP's version took 0.0004558563 to run. |
||||||||||||
|
|
|
b<-(y!=0)+0
|
||
|
|