Re: [R] vector subtraction
You're thinking about it wrong. This is an arithmetic sequence: seq(from = 1000, by = -30, length.out = 15) Michael On Fri, Apr 20, 2012 at 5:14 AM, uday wrote: > I would like to calculate vector from existing value > e.g > v <- 1000 > s <- 30 > d1 <- v-s > d
[R] vector subtraction
I would like to calculate vector from existing value e.g v <- 1000 s <- 30 d1<- v-s d1<- 970 d2<- d1 -s d2<- 940 d 3 <- d2-s d3<- 910 : : d15 <- . so how I should get vector of length 15