📜  r range with step - R 编程语言代码示例

📅  最后修改于: 2022-03-11 14:52:00.192000             🧑  作者: Mango

代码示例1
> #a vector of even numbers
> seq(0, 10, by=2) # Explicitly specifying "by" only to increase readability 
> [1]  0  2  4  6  8 10