溫馨提示×

r語言怎么將多列數(shù)據(jù)合并

小億
392
2023-09-13 23:16:29
欄目: 編程語言

在R語言中,可以使用cbind()函數(shù)將多個列數(shù)據(jù)合并在一起。該函數(shù)將按列連接數(shù)據(jù)。

以下是一個示例:

# 創(chuàng)建兩個數(shù)據(jù)向量
x <- c(1, 2, 3)
y <- c(4, 5, 6)
# 使用cbind()函數(shù)合并兩個向量
merged_data <- cbind(x, y)
print(merged_data)

輸出結(jié)果:

x y
[1,] 1 4
[2,] 2 5
[3,] 3 6

在該示例中,我們創(chuàng)建了兩個向量xy,然后使用cbind()函數(shù)將它們合并在一起,形成了一個包含兩列的數(shù)據(jù)矩陣。

0