标签: r
我有以下数据框:
Ad Bd Ce 1 1 1 2 2 2 3 3 3
我想在名称中选择包含“d”的列(我不想使用列索引)。
我考虑过使用grepl(),但不知道如何指定'x'参数:
new_data <- old_data[,which(grepl("d",x))]