Solution: Plotting the Data
Let’s look at the solutions to the above exercise.
Task 1: Creating a bar plot
Recreate the bar plots below for the max and min stock prices that took the biggest hit during the recession. Use the same dataset and codes from the previous practice exercise.
Hint: Use subplots()
and pass ncols = 2
.
You can use the max_stock
and min_stock
values from the previous exercise. Remember that you need to ...