gpt4 book ai didi

r - 如何在R中连接两个数组

转载 作者:行者123 更新时间:2023-12-05 08:51:51 24 4
gpt4 key购买 nike

我有两个数组。

使用 numpy.append我们可以合并两个数组。

我们如何在 R 中做同样的事情?

merge不可以这样做。

Python 输出/示例:

   a=np.array([1,2,3,4,5,5])
b=np.array([0,0,0,0,0,0])
np.append(a,b)

array([1, 2, 3, 4, 5, 5, 0, 0, 0, 0, 0, 0]) # this is what I want

x<-c(mat , (0.0) * (l - length(demeaned)))

mat is matrix (size is 20)

l - length(demeaned)是 10

最后我要30码

最佳答案

c -function 连接它的参数。向量可以是数字或其他向量的串联:

a = c(1,2,3,4,5,5)
b = c(0,0,0,0,0,0)
c(a,b)

[1] 1 2 3 4 5 5 0 0 0 0 0 0

至少对于你的 python 示例中的一维数组,这相当于 np.append

关于r - 如何在R中连接两个数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58288927/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com