I am working with the following data frame:
Name       Height
Eric        64
(Joe)       67
Mike        66
Nick        72
(Dave)      69
Steve       73
I would like to delete all rows when the 'name' column starts with an open parenthesis "(". So the final data frame would look like:
Name       Height
Eric        64
Mike        66
Nick        72
Steve       73
 
     
     
    