最佳答案
我想重复一个 data.frame 的行,每个 N
次。结果应该是一个新的 data.frame
(带有 nrow(new.df) == nrow(old.df) * N
) ,保持列的数据类型。
例如 N = 2:
A B C
A B C 1 j i 100
1 j i 100 --> 2 j i 100
2 K P 101 3 K P 101
4 K P 101
So, each row is repeated 2 times and characters remain characters, factors remain factors, numerics remain numerics, ...
我的第一次尝试使用了 application: apply(old.df, 2, function(co) rep(co, each = N))
,但是这一次将我的值转换为字符,我得到:
A B C
[1,] "j" "i" "100"
[2,] "j" "i" "100"
[3,] "K" "P" "101"
[4,] "K" "P" "101"