如何在 r 中重命名单个列(附示例)


您可以使用以下任何方法来重命名 R 中数据框中的单个列:

方法 1:使用 Base R 重命名单个列

 #rename column by name
colnames(df)[colnames(df) == ' old_name '] <- ' new_name '

#rename column by position
#colnames(df)[ 2 ] <- ' new_name '

方法 2:使用 dplyr 重命名单个列

 library (dplyr)

#rename column by name
df <- df %>% rename_at(' old_name ', ~' new_name ')

#rename column by position
df <- df %>% rename_at( 2 , ~' new_name ')

以下示例展示了如何在 R 中使用以下数据框实际使用每种方法:

 #create data frame
df <- data. frame (team=c('A', 'B', 'C', 'D', 'E'),
                 points=c(99, 90, 86, 88, 95),
                 assists=c(33, 28, 31, 39, 34),
                 rebounds=c(30, 28, 24, 24, 28))

#view data frame
df

  team points assists rebounds
1 A 99 33 30
2 B 90 28 28
3 C 86 31 24
4 D 88 39 24
5 E 95 34 28

示例 1:使用 Base R 重命名单个列

以下代码显示如何使用列名称将列重命名为total_points

 #rename 'points' column to 'total_points'
colnames(df)[colnames(df) == ' points '] <- ' total_points '

#view updated data frame
df

  team total_points assists rebounds
1 A 99 33 30
2 B 90 28 28
3 C 86 31 24
4 D 88 39 24
5 E 95 34 28

以下代码显示如何使用列位置将点列重命名为total_points

 #rename column in position 2 to 'total_points'
colnames(df)[ 2 ] <- ' total_points '

#view updated data frame
df

  team total_points assists rebounds
1 A 99 33 30
2 B 90 28 28
3 C 86 31 24
4 D 88 39 24
5 E 95 34 28

请注意,两种方法都会产生相同的结果。

示例 2:使用 dplyr 重命名单个列

以下代码显示如何使用dplyr中的rename_at()函数按名称将列重命名为total_points

 library (dplyr)

#rename 'points' column to 'total_points' by name
df <- df %>% rename_at(' points ', ~' total_points ')

#view updated data frame
df

  team total_points assists rebounds
1 A 99 33 30
2 B 90 28 28
3 C 86 31 24
4 D 88 39 24
5 E 95 34 28

以下代码显示如何使用dplyr中的rename_at()函数按列位置将列重命名为total_points

 library (dplyr)

#rename column in position 2 to 'total_points'
df <- df %>% rename_at( 2 , ~' total_points ')

#view updated data frame
df

  team total_points assists rebounds
1 A 99 33 30
2 B 90 28 28
3 C 86 31 24
4 D 88 39 24
5 E 95 34 28

请注意,两种方法都会产生相同的结果。

其他资源

以下教程解释了如何在 R 中执行其他常见任务:

如何在 R 中选择特定列
如何在 R 中保留某些列
R中如何按多列排序

添加评论

您的电子邮箱地址不会被公开。 必填项已用*标注