All our Data Science projects include bite-sized activities to test your knowledge and practice in an environment with constant feedback.
All our activities include solutions with explanations on how they work and why we chose them.
Select the Sales (U.S., 2017)
column and store it in a variable called sales
.
Display the top 3 chains by rank.
Store your result in a variable called top_3_chains
.
Your result should match the following output :
Using .loc[]
method find out the name of the fast food chain ranked 5th
in the dataset.
Using the Sales (U.S., 2017)
find out what is the median
number of sales across all food chains?
Store your result in median_sales
variable.