Skip to content
Prev 200603 / 398503 Next

:Problem with Looping

Don't use floating point operations in your indexing.  You may also want to change how you generate your sequence.  This is a floating point representation problem. See FAQ 7.31.  Try something like this

arg <- matrix(NA,length(seq(30,50,1)),1)
for (i in seq(30,50,1)) {arg[i-29] <- i/100 }

Hope this is helpful,

Dan

Daniel J. Nordlund
Washington State Department of Social and Health Services
Planning, Performance, and Accountability
Research and Data Analysis Division
Olympia, WA  98504-5204