example<-c(1,2,3) to_be_inserted<-1 example<-append(example, to_be_inserted)
我得到的结果是c(1,2,3,1),但是我想要c(1,1,2,3)
c(1,2,3,1)
c(1,1,2,3)
我该怎么做?
您可以使用append功能。
> append(1,example) [1] 1 1 2 3
我们可以使用c连接向量。
c
c(to_be_inserted, example) #[1] 1 1 2 3