r 将列重命名为R友好名称

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了r 将列重命名为R友好名称相关的知识,希望对你有一定的参考价值。

# This line of code converts the column names into R-Friendly names (eg, remove spaces)

# Create a dummy matrix
lstNames <- c("Col A","Col B")
df<-matrix(1:8, ncol = 2)
colnames(df)<-lstNames

# Use make.names to convert the existing names to r-friendly names
colnames(df)<-make.names(colnames(df))

# If using a Tibble, perhaps just use names rather colnames - not sure if it makes a difference
names(df)<-make.names(names(df))

以上是关于r 将列重命名为R友好名称的主要内容,如果未能解决你的问题,请参考以下文章

用名称中的句点重命名clickhouse中的列

如何仅将“未命名:”列重命名为数字索引

如何重塑多索引数据框

Python:构建 Pandas 数据框的对象

按列索引熊猫数据框重命名列

加入期间的意外行为(仅在将列 'year' 重命名为 'year' 时才有效)否则将失败并显示“package.TreeNodeException:执行树”