Question: Vector selection: the good times ( 4 ) Another way to tackle the previous exercise is by using the names of the vector elements (

Vector selection: the good times (4)
Another way to tackle the previous exercise is by using the names of the vector elements (Monday, Tuesday, ...) instead of their numeric positions. For example,
poker_vector["Monday"]
will select the first element of poker_vector since "Monday" is the name of that first element.
Just like you did in the previous exercise with numerics, you can also use the element names to select multiple elements, for example:
poker_vector[c("Monday", "Tuesday")]
() Instructions
Select the first three elements in poker_vector by using their names:
"Monday" , "Tuesday" and "Wednesday" . Assign the result of the selection to poker_start .
Calculate the average of the values in poker_start with the mean() function. Simply print out the result so you can inspect it.
 Vector selection: the good times (4) Another way to tackle the

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!