我有一个字符向量,包括:
male, maLe, Male, MALE, ma8le
个字符。我想将以上内容替换为"Male"
,如何在R中实现
我尝试了'sub','gsub','str_replace'。解决方案必须类似于以下给出的python:
df['gender'].replace(["male", "maLe", "Male", "MALE", "ma8le"], ["Male","Male","Male","Male","Male"], inplace = True)
我需要在R中执行相同的操作
gend_cor<- c("male", "maLe", "Male", "MALE", "ma8le")
data$gender <- gsub(gend_cor, "Male", data$gender)
我的预期输出是:如果我输入上面的“ gend_cor”,它必须返回Male而不是其他错误的单词