我在R工作,想要将值组合如下:
我创建了两个变量,
a = c(1,2,3)
b = c(4,5,6)
我想现在创建一个具有输出的新值'c':
c
[1] 1 2 3 4 5 6
我的问题是如何在R中做到这一点?非常感谢提前!
答案 0 :(得分:0)
这是最简单的方法
a = c(1,2,3)
b = c(4,5,6)
c <- c(a,b)
c
即使没有必要,你也可以编写一个为你做的功能
function_to_combine_vectors <- function(vector_1, vector_2){
new_vector <- c(vector_1, vector_2)
return(new_vector)
}
c <- function_to_combine_vectors(a, b)
print(c)