42

c()との使用の違いは何append()ですか? ありますか?

> c(      rep(0,5), rep(3,2) )
[1] 0 0 0 0 0 3 3

> append( rep(0,5), rep(3,2) )
[1] 0 0 0 0 0 3 3
4

1 に答える 1