I try to generate a series like:
a thousand of 1, a thousand of 2,... until a thousand of 100.
I try this code:
test <- round(seq(1, 100, length.out=100000))
but unfortunately, when I do a table, I obtain this:
Have you an idea? Thanks a lot.