Create the following visualizations using what you have learned up to this point in this book. Use the data from this chapter's data/ directory:
- Plot the rolling 20-day minimum of the Facebook closing price with the pandas plot() method.
- Create a histogram and KDE of the change from open to close in the price of Facebook stock.
- Using the earthquake data, create box plots for the magnitudes of each magType used in Indonesia.
- Make a line plot of the difference between the weekly maximum high price and the weekly minimum low price for Facebook. This should be a single line.
- Using matplotlib and pandas, create two subplots side-by-side showing the effect that after-hours trading has had on Facebook's stock price:
- The first subplot will contain a line plot of the daily difference between that day's opening price and the prior day's closing price (be...