本文介绍了在 R 中按模式重命名列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想按特定模式重命名数据框中的所有列.

I would like to rename all my columns in a dataframe by a specific pattern.

我的输入:

Log.NE122  Log.NE244  Log.NE144
-0.33       0.98        1.0

我的预期输出:

 NE122  NE244  NE144
-0.33   0.98    1.0

干杯.

推荐答案

您可以使用正则表达式来更改对象的 colnames().在这里,我正在替换日志.一无所有:

You can use regular expressions to change the colnames() of an object. Here I'm replacing the Log. with nothing:

colnames(object) <- sub("Log\\.", "", colnames(object))

这篇关于在 R 中按模式重命名列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 12:38