Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Introduction to lists
Accessing list elements
Unnamed lists
Working with lists
Summary

Instruction

Awesome! You can create a sublist from as many elements as you like.

For example, if you want to display both the requirements and technical skills for a particular position, you can do so by typing:

job_role[c("requirements", "technical_skills")]

This will return a sublist with two elements: requirements and skills. If we want to retrieve more than one element from a list, we simply define the member names inside the c() function.

Exercise

The recruiter wants to compare Emma's skill set with the skills/requirements of the data scientist role. Display Emma's profession and prior_working_experience (in that order) using the candidate list.