I have a dataframe like this:
id adit diag1 diag2
2 3 4230 2234
3 5 3345 4456
4 6 4567 4467
I would like to add other 2 columns, dse1 and dse2 using the pseudo-code below:
if diag1 contains 4230 then dse1 = 1 else dse1 = 0
if diag2 contains 4567 then dse2 =1 else dse2 = 0
I used this:
for (i in 1 : nrow(dse)){
for (j in 3: ncol(dse)){
if dse[i,j] %in% ("4320"){dse$dse1 = 1}
else{dse$dse1 = 0}
if dse[i,j] %in% ("4567"){dse$dse2 = 1}
else{dse$dse2 = 0}
}
}
But these do not work.
if/elsethen theelse needs to be on the same line as the closing}` from yourifstatement.