0

我有一个简单的 CSV 文件:

Alpha   Beta    Gamma
1       4       4
2       6       3

如何在列名中添加特定的整数或字符串,比如 1 或“June”?我期望的输出是:

Alpha_1 Beta_1  Gamma_1
1       4       4
2       6       3
4

2 回答 2

2

使用paste或。paste0_names

假设你data.frame被称为testnames(test) = paste0(names(test), "_1")

于 2012-08-26T17:06:55.700 回答
1
DF <- read.table(text='
       Alpha   Beta    Gamma
       1       4       4
       2       6       3', header=TRUE)


colnames(DF) <- paste(colnames(DF), 1, sep='_')
于 2012-08-26T17:07:16.750 回答