R言語で複数の列のデータを結合する方法

R言語では、cbind()関数を用いて複数の列データを結合できます。その際、データの結合は列単位で行われます。

以下に例を示します

# 创建两个数据向量
x <- c(1, 2, 3)
y <- c(4, 5, 6)
# 使用cbind()函数合并两个向量
merged_data <- cbind(x, y)
print(merged_data)

結果を出力します

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

x と y の 2 つのベクトルを作成し、cbind() 関数を使って、2 列のデータを含む行列を作成しました。

コメントを残す 0

Your email address will not be published. Required fields are marked *


广告
広告は10秒後に閉じます。
bannerAds