In R what is the seq function used for and how is it used?
Answer
The sequence function, seq, is very handy for creating vectors that consist of regular sequences of numbers.
In its basic form, the user specifies the starting value of the sequence, the ending value, and the increment between successive values, like this: > seq( from=0 , to=3 , by=0.5 ) # length not specified [1] 0.0 0.5 1.0 1.5 2.0 2.5 3.0
Tags
#bayes #programming #r #statistics
Question
In R what is the seq function used for and how is it used?
Answer
?
Tags
#bayes #programming #r #statistics
Question
In R what is the seq function used for and how is it used?
Answer
The sequence function, seq, is very handy for creating vectors that consist of regular sequences of numbers.
In its basic form, the user specifies the starting value of the sequence, the ending value, and the increment between successive values, like this: > seq( from=0 , to=3 , by=0.5 ) # length not specified [1] 0.0 0.5 1.0 1.5 2.0 2.5 3.0
If you want to change selection, open original toplevel document below and click on "Move attachment"
Parent (intermediate) annotation
Open it The sequence function, seq, is very handy for creating vectors that consist of regular sequences of numbers. In its basic form, the user specifies the starting value of the sequence, the ending value, and the increment between successive values, like this: > seq( from=0 , to=3 , by=0.5 ) # length not specified [1] 0.0 0.5 1.0 1.5 2.0 2.5 3.0
Original toplevel document (pdf)
owner: shihabdider - (no access) - Doing Bayesian Data Analysis, p45
Summary
status
not learned
measured difficulty
37% [default]
last interval [days]
repetition number in this series
0
memorised on
scheduled repetition
scheduled repetition interval
last repetition or drill
Details
No repetitions
Discussion
Do you want to join discussion? Click here to log in or create user.