R语言dplyr包select函数删除dataframe数据中包含指定字符串内容的数据列(drop columns in dataframe)

问题描述

参考链接
我有一个数据框,想删除列名包含“Pval”的列

实现方法

a_new <- select(data, -contains('Pval'))

大功告成。

你可能感兴趣的:(r语言,开发语言)