Vector selection, multiple value selection
Suppose you want to select the first and the fifth day of the week: use the vector c(1, 5) between the square brackets. For example, the code below selects the first and fifth element of poker_vector:
poker_vector[c(1, 5)]
Instruction
Assign the poker results of Tuesday, Wednesday and Thursday to the variable poker_midweek.