I have a decimal variable x0.
I want to make a vector from [x0, 6] increasing by 0.01 each time.
I know it's something like c(x0:6, by=0.01) but that didn't work.
c(x0:6, by=0.01)
x0 = 5.9 seq(x0, 6, 0.01) [1] 5.90 5.91 5.92 5.93 5.94 5.95 5.96 5.97 5.98 5.99 6.00
2.1m questions
2.1m answers
60 comments
57.0k users