I am trying to iterate through a vector and edit a new one however I keep getting the error replacement has length zero. The portion where the error occurs is here:
NewPos1 = rep(NROW(sig_decision))
for( i in 2:length(NewPos)) {
NewPos1[i] = ifelse( NewPos[i] == 0 & NewPos[i-1] == 1 & ind1[i] > 0 , 1,
ifelse(NewPos[i] ==0 & NewPos[i-1] == -1 & ind1[i] < 0 , -1,0))
}
Ok to be more specific
Where am I going wrong?
Edit: I should be more specific ind1 is a numeric vector. The reason why I want a loop is so that starting with the 2nd element in NewPos1([NewPos[1]) if the previous element of NewPos(NewPos[1]) is 1 and ind1[2] > 0 then I want NewPos1[2] to be one and so forth iterating through the entire vector so that if ind1[3] is >0 then NewPos1[3] is also 1
sig_decision? What isNewPos, as you've only definedNewPos1. In the meantime, check outswitchrather than nesting dozens ofif elseelements. – Carl Witthoft Jul 27 '12 at 19:12