I have a sequence from 1 to 2 which actually represents 1 to 2 minutes. I would like the increments to be in seconds. I don't think the 'chron' package will answer my problem here, because I want to make an array of numerical, decimal values not colon separated values (i.e.,1:01, 1:02).
seq(from=1, to=2, by=0.006)
this is what I've been doing so far, at least it gives me a ratio. But I would actually just like seconds so 1.00 to 1.60 then 2 to 2.60 essentially.
is there another function that could help me out w/ this so I don't have to write an ifelse statement?