Possible Duplicate:
How to generate a vector containing a numeric sequence?
In R, how can I get the list of numbers from 1 to 100? Other languages have a function 'range' to do this. R's range does something else entirely.
> range(1,100)
[1] 1 100
In R, how can I get the list of numbers from 1 to 100? Other languages have a function 'range' to do this. R's range does something else entirely.
|
|||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Your mistake is looking for
gives
Instead, look at the
or you can use the
or
|
|||
|
|
|
If you need the construct for a quick example to play with, use the : operator. But if you are creating a vector/range of numbers dynamically, then use seq() instead. Let's say you are creating the vector/range of numbers from a to b with a:b, and you expect it to be an increasing series. Then, if b is evaluated to be less than a, you will get a decreasing sequence but you will never be notified about it, and your program will continue to execute with the wrong kind of input. In this case, if you use seq(), you can set the sign of the by argument to match the direction of your sequence, and an error will be raised if they do not match. For example,
will raise an error for a=2, b=6, because the coder expected a decreasing sequence. |
|||
|
|
[[]]and[]– Colonel Panic Jul 13 '12 at 8:29