让我们考虑数据集虹膜。
>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次?
答案 0 :(得分:1)
您可以使用rep
和each
参数复制列。
iris[rep(1:ncol(iris), each = 12)]