将数字粘贴到数字

时间:2016-10-07 09:04:52

标签: r merge paste base

我只需要合并(如辫子?)到包含数值的元素。我知道我可以past(),但我需要将数字保留为数字。

x <- 1:2; x
# [1] 1 2
y <- c(9999, 9999); y
# [1] 9999 9999    
z <- [some function]; z
# [1] 1 9999 2 9999          # my desired output
class(z)
[1] "numeric"

2 个答案:

答案 0 :(得分:2)

我们可以使用Map

unlist(Map(c, x, y))
#[1]    1 9999    2 9999

str(unlist(Map(c, x, y)))
# num [1:4] 1 9999 2 9999
class(unlist(Map(c, x, y)))
#[1] "numeric"

答案 1 :(得分:1)

以下是matrix()的解决方案:

c(matrix(c(x,y), ,2, byrow=TRUE))