Hi, I've been using the following code for open robust design time intervals;
time.intervals=c(0,0,0,2,0,0,0,2,0,0)
However it's just occurred to me that 0 denotes a closed period which is going against the assumption of the open robust design. Should the 0's be replaced with a 1 instead so that movement can occur within periods, to give something like this?
time.intervals=c(1,1,1,2,1,1,1,2,1,1)
Thanks!