复制R中的列

时间:2018-10-20 15:11:06

标签: r replicate

让我们考虑数据集虹膜。

>iris
        Sepal.Length Sepal.Width Petal.Length Petal.Width    Species
    1            5.1         3.5          1.4         0.2     setosa
    2            4.9         3.0          1.4         0.2     setosa
    3            4.7         3.2          1.3         0.2     setosa

我们如何将这个数据集的每个列复制12次?

1 个答案:

答案 0 :(得分:1)

您可以使用repeach参数复制列。

iris[rep(1:ncol(iris), each = 12)]