R - 连接整数数组

Sky*_*and 4 r

我该如何加入1:37:8加入1 2 3 7 8

哪个是接受这样的诡计的好资源?

Cha*_*ase 10

c(1:3, 7:8)
[1] 1 2 3 7 8
Run Code Online (Sandbox Code Playgroud)

帮助页面显示 this is a generic function which combines its arguments.

  • [R参考卡](http://cran.r-project.org/doc/contrib/Short-refcard.pdf)也相当不错. (2认同)