First off I would like to say I am very new to R, about 2 weeks old. I am not sure the best way to phrase this but I have a table, consisting of 4 columns and 6 rows. I would like to pull all rows that match a word in a specific field.
Opened Created_by ticket closed
5/11   John Doe   773    TRUE
5/11   Jane Doe   774    FALSE
5/11   Jack Doe   775    TRUE
6/1    John Doe   805    TRUE
6/1    John Doe   806    FALSE
6/1    Jane Doe   807    TRUE
I want to see all the Tickets created by John Doe, so it would look something like this after I entered the correct code.
5/11 John Doe 773 TRUE
6/1  John Doe 805 TRUE
6/1  John Doe 806 FALSE
 
     
     
     
    