I have a vector in R which contains at least 50.000 reals. The values are ordered from small to large and now I need to split up this vector in different vectors. The vector
Try this,
split(data, cumsum(c(0, diff(data)>=2)))