Get in the zone
- Create a list consisting of a vector of numbers and a vector of strings.
- Check it out with
str
, names
and summary
- Find the second element of the first entry of your list. One way to do this is:
my_list$first_entry[2]
## [1] 2
Warmup Exercise:What are three other ways you can do that?