在R語言中,可以使用c()
函數(shù)將多列數(shù)據(jù)合并成一列。以下是一個(gè)示例:
# 創(chuàng)建示例數(shù)據(jù)
df <- data.frame(x = c(1, 2, 3),
y = c(4, 5, 6),
z = c(7, 8, 9))
# 合并多列數(shù)據(jù)
merged <- c(df$x, df$y, df$z)
在上述示例中,首先創(chuàng)建了一個(gè)包含3列的數(shù)據(jù)框 df
,包含了列 x
、y
和z
。然后,使用 c()
函數(shù)將這三列數(shù)據(jù)合并成一列,存儲(chǔ)在變量 merged
中。最終的結(jié)果是一個(gè)包含9個(gè)元素的向量,依次存儲(chǔ)了原來的三列數(shù)據(jù)中的值。