Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

If else statements to check if a string contains a substring in R

I have a list that contains multiple strings for each observation (see below).

  [1] A, C, D 
  [2] P, O, E
  [3] W, E, W
  [4] S, B, W

I want to test if the strings contain certain substrings and if so, return the respective substring, in this example this would be either "A" or "B" (see desired outcome below). Each observation will only contain either one of the 2 substrings (A|B)

  [1] A 
  [2] NA
  [3] NA
  [4] B

No I have made this attempt in solving it, but it seems very inefficient and also I do not get it to work. How could I solve it?

  if (i == "A") {
    type <- "A"
  } else if { (i == "B") 
    type <- "B" 
  } else { type <- "NA"
  } 

Note: I will need to loop it through > 1000 observations

like image 896
Carolin Avatar asked Jun 12 '18 14:06

Carolin


3 Answers

Assume you have a vector of characters, you can use stringr::str_extract for this purpose:

s <- c('A, C, D', 'P, O, E', 'W, E, W', 'S, B, W')
s
# [1] "A, C, D" "P, O, E" "W, E, W" "S, B, W"
stringr::str_extract(s, 'A|B')
# [1] "A" NA  NA  "B"

If a word match is preferred, use word boundaries \\b:

stringr::str_extract(s, '\\b(A|B)\\b')
# [1] "A" NA  NA  "B"

If substring is defined by ", ", you can use this regex (?<=^|, )(A|B)(?=,|$):

# use the test case from G.Grothendieck
stringr::str_extract(c("A.A, C", "D, B"), '(?<=^|, )(A|B)(?=,|$)')
# [1] NA  "B"
like image 68
Psidom Avatar answered Sep 20 '22 10:09

Psidom


without using a package and working only with vectors:

vec <- c('A, C, D', 
         'P, O, E', 
         'W, E, W', 
         'S, B, W')

ifelse(grepl('A', vec), 'A', ifelse(grepl('B', vec), 'B', NA))

You can simplify this further but I left it in the expanded form so you can see how it works.

like image 31
Gautam Avatar answered Sep 23 '22 10:09

Gautam


Below we provide strapply and base solutions. The strapply solution is very short but it will not work if the elements to be matched can be substrings of the target; however, they are not substrings in the question so it should work there. The base solution would work even in that case since it uses exact matches rather than regular expressions.

1) strapply (gsubfn) Use strapply in gsubfn. Omit simplify=TRUE if you want a list as output. [AB] can be replaced with A|B if need be.

library(gsubfn)

strapply(x, "[AB]", empty = NA, simplify = TRUE)
## [1] "A" NA  NA  "B"

2) base Split the input and for each element of the split Filter out the matches giving list L. It may be that L is sufficient for your needs but if not then the last line simplifies it to a vector and replaces zero length elements with NA.

L <- lapply(strsplit(x, ", "), Filter, f = function(x) x %in% c("A", "B"))
unlist(replace(L, !lengths(L), NA))
## [1] "A" NA  NA  "B"

Note

x <- c("A, C, D", "P, O, E", "W, E, W", "S, B, W")
like image 20
G. Grothendieck Avatar answered Sep 22 '22 10:09

G. Grothendieck