我有以下数据框,如下所示。
Funct.Area Environment ServiceType Ticket.Nature SLA.Result..4P. IRIS.Priority Func_Environment
2 FUN DCF FUN SR OK Medium FUN-DCF
3 AME - FIN DCF FUN SR Defect Medium AME - FIN-DCF
4 EMEA -FIN DCF FUN SR OK Medium EMEA -FIN-DCF
5 APS DCF APS SR Defect Medium APS-DCF
6 EMEA -SC DCF FUN SR OK Medium EMEA -SC-DCF
7 SEC DCF SEC SR OK Low SEC-DCF
我需要从字段Funct.Area
做一个子集,以获得前3或4个字符,如果它们是“EMEA”或“AME”,则将该字段中的值替换为Environment
上的值。
我在StackOverflow中研究了类似的问题,但由于我遇到了一个因素问题,我无法管理复制部分。
如果有任何方法可以尝试,有人能指导我吗?
谢谢。
编辑#1:Per @akrun方法。
tickets$Funct.Area <- as.character(tickets$Funct.Area)
i1 <- with(tickets, grepl("^(EMEA|AME)", tickets$Funct.Area))
tickets$Funct.Area[i1] <- tickets$Func_Environment[i1]
head(tickets)
Funct.Area Environment ServiceType Ticket.Nature SLA.Result..4P. IRIS.Priority Func_Environment
2 FUN DCF FUN SR OK Medium FUN-DCF
3 13 DCF FUN SR Defect Medium AME - FIN-DCF
4 65 DCF FUN SR OK Medium EMEA -FIN-DCF
5 APS DCF APS SR Defect Medium APS-DCF
6 66 DCF FUN SR OK Medium EMEA -SC-DCF
7 SEC DCF SEC SR OK Low SEC-DCF
编辑2:
这是对我有用的解决方案。
tickets$Funct.Area <- as.character(tickets$Funct.Area)
tickets$Environment <- as.character(tickets$Environment)
i1 <- with(tickets, grepl("^(EMEA|AME)", tickets$Funct.Area))
tickets$Funct.Area[i1] <- tickets$Func_Environment[i1]
tickets$Funct.Area[i1] <- as.character(tickets$Environment[i1])
非常感谢@akrun。
我们使用grepl
创建一个逻辑索引('i1')来检查字符串开头的字符(^
)是'EMEA'还是(|
)“AME”。使用它,将'Funct.Area'的元素替换为'Funct_Environment'
i1 <- with(df1, grepl("^(EMEA|AME)", Funct.Area))
df1$Funct.Area[i1] <- df1$Func_Environment[i1]
df1
# Funct.Area Environment ServiceType Ticket.Nature SLA.Result..4P. IRIS.Priority Func_Environment
#2 FUN DCF FUN SR OK Medium FUN-DCF
#3 AME - FIN-DCF DCF FUN SR Defect Medium AME - FIN-DCF
#4 EMEA -FIN-DCF DCF FUN SR OK Medium EMEA -FIN-DCF
#5 APS DCF APS SR Defect Medium APS-DCF'
#6 EMEA -SC-DCF DCF FUN SR OK Medium EMEA -SC-DCF
#7 SEC DCF SEC SR OK Low SEC-DCF
df1 <- structure(list(Funct.Area = c("FUN", "AME - FIN", "EMEA -FIN",
"APS", "EMEA -SC", "SEC"), Environment = c("DCF", "DCF", "DCF",
"DCF", "DCF", "DCF"), ServiceType = c("FUN", "FUN", "FUN", "APS",
"FUN", "SEC"), Ticket.Nature = c("SR", "SR", "SR", "SR", "SR",
"SR"), SLA.Result..4P. = c("OK", "Defect", "OK", "Defect", "OK",
"OK"), IRIS.Priority = c("Medium", "Medium", "Medium", "Medium",
"Medium", "Low"), Func_Environment = c("FUN-DCF", "AME - FIN-DCF",
"EMEA -FIN-DCF", "APS-DCF'", "EMEA -SC-DCF", "SEC-DCF")), .Names = c("Funct.Area",
"Environment", "ServiceType", "Ticket.Nature", "SLA.Result..4P.",
"IRIS.Priority", "Func_Environment"), class = "data.frame",
row.names = c("2",
"3", "4", "5", "6", "7"))