i want to search columns 2 and 3 for the word "is" which should return 1, 2, and 3. what code should i use? thanks in advance.
c1 c2 c3
1 a dog is barking I am late
2 it is raining I will run
3 we are eating this is fun
4 I am sleepy maybe tomorrow
5 later tonight we all laugh
grepl("is", "file.csv", ignore.case = FALSE, perl = FALSE, fixed = FALSE, useBytes = FALSE)
to no avail. thanks!