I can't think of what I am doing wrong here. If I try:
seq(from=0.55, to=0.55, by=0.05)
[1] 0.55
But then if I try to use variables it gives me an error. Not sure what is different here but have a hunch it is some subtlety of R that I missed. Here is the same code using variables:
corr.from <- 0.55
corr.to <- 0.6
corr.increment <- 0.05
seq(from=corr.from, to=corr.to - corr.increment, by=corr.increment)
Error during wrapup: wrong sign in 'by' argument
What am I doing wrong?