我有一个数据框,例如下面的示例。我想在数据框中复制一列,然后重命名为另一个列名。
Name Age Rate
Aira 23 90
Ben 32 98
Cat 27 95
期望输出为:
Name Age Rate Rate2
Aira 23 90 90
Ben 32 98 98
Cat 27 95 95
我该怎么做?谢谢。
最佳答案
在用户@thelatemail的帮助下回答。
df = read.table(sep="",
header=T,
text="Name Age Rate
Aira 23 90
Ben 32 98
Cat 27 95")
df$Rate2 = df$Rate #create column 'Rate2' and make it equal to 'Rate' (duplicate).
复制,一式三份或“ n重复”的另一种选择:
#use ?replicate function, which replicates elements over vectors and lists.
n = 3 #replicate 3 new columns
df3 = cbind(df, replicate(n,df$Rate)) #replicate from column "Rate" in the df object
df3 #plot df3 output
Name Age Rate 1 2 3
1 Aira 23 90 90 90 90
2 Ben 32 98 98 98 98
3 Cat 27 95 95 95 95
关于r - 在数据框中复制一列并将其重命名为另一个列名,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22030252/