I like to use the seq() command in R to create a sequence starting at zero. but when I type e.g.
seq(0:14)
I get the following output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
What am I doing wrong?
|
As others have said you want In this case, the colon operator on its own (as described in
Despite causing the error you got, this
And we can't say
|
|||||
|
|
Your problem here is with syntax. i:j creates a sequence from the number i to j; for example 1:5 can be read as 1 to 5 or 1,2,3,4,5. On the other hand, the function seq takes a 'to' parameter, and a 'from' parameter, both of which must be single numbers. Entering seq(0:14) means that a vector - not a single number - is handed to one of seq's parameters. What you want is
Hope that helps |
|||
|
|
seqhas afromand atoargument (besides the commonly usedbyandlength.outarguments. So you'll have to specifyseq(0, 14, by=1)(by=1 is default, so you can skip it). (check out?seq) – Arun Dec 29 '12 at 13:36