Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

If Column Contains String then enter value for that row

Tags:

string

r

I have a dataframe that looks like this:

A     B
ABC1  0
DEF2  4
DEG0  4

How do I transform this so that if a row contains the letter "D" then insert the value "yes" in a new column and "no" if not.

Final dataframe should look like this:

A     B    C
ABC1  0    no
DEF2  4    yes
DEG0  4    yes
like image 203
nak5120 Avatar asked Oct 06 '16 18:10

nak5120


1 Answers

We can use grepl to return a logical index by matching the 'D' in the 'A' column, and then with ifelse, change the logical vector to 'yes' and 'no'

df$C <- ifelse(grepl("D", df$A), "yes", "no")
like image 142
akrun Avatar answered Nov 15 '22 00:11

akrun