I am new to \'R\' and \'Stackoverflow\' so forgive me for the incredibly basic question. I\'m trying to find the \'index\' of the first female in my dataset.
Code Snaps
Probably the most direct method would be to use match("F", bike[,"genders"] which will return the index of the first match.
match("F", bike[,"genders"]