Welcome to the exercises for reviewing matplotlib! Take your time with these, Matplotlib can be tricky to understand at first. These are relatively simple plots, but they can be hard if this is your first time with matplotlib, feel free to reference the solutions as you go along.
Also don't worry if you find the matplotlib syntax frustrating, we actually won't be using it that often throughout the course, we will switch to using pandas built-in visualization capabilities. But, those are built-off of matplotlib, which is why it is still important to get exposure to it!
NOTE: ALL THE COMMANDS FOR PLOTTING A FIGURE SHOULD ALL GO IN THE SAME CELL. SEPARATING THEM OUT INTO MULTIPLE CELLS MAY CAUSE NOTHING TO SHOW UP.
Follow the instructions to recreate the plots using this data:
import numpy as np
x = np.arange(0,100)
y = x*2
z = x**2
Import matplotlib.pyplot as plt and set %matplotlib inline if you are using the jupyter notebook. What command do you use if you aren't using the jupyter notebook?
import matplotlib.pyplot as plt
%matplotlib inline
plt.show()
Follow along with these steps:
fig = plt.figure()
ax = fig.add_axes([0, 0, 1, 1])
ax.plot(x, y, color='blue')
ax.set_xlabel('x')
ax.set_ylabel('y')
ax.set_title('title')
Create a figure object and put two axes on it, ax1 and ax2. Located at [0,0,1,1] and [0.2,0.5,.2,.2] respectively.
fig = plt.figure()
ax1 = fig.add_axes([0, 0, 1, 1])
ax2 = fig.add_axes([0.2, 0.5, .2, .2])
Now plot (x,y) on both axes. And call your figure object to show it.
ax1.plot(x,y)
ax2.plot(x,y)
fig
Create the plot below by adding two axes to a figure object at [0,0,1,1] and [0.2,0.5,.4,.4]
fig = plt.figure()
fig.add_axes([0,0,1,1])
fig.add_axes([0.2,0.5,.4,.4])
Now use x,y, and z arrays to recreate the plot below. Notice the xlimits and y limits on the inserted plot:
fig = plt.figure()
ax1 = fig.add_axes([0,0,1,1])
ax2 = fig.add_axes([0.2,0.5,.4,.4])
ax1.plot(x,z)
ax1.set_xlabel('x')
ax1.set_ylabel('z')
ax2.set_xlim(20,22)
ax2.set_ylim(30,50)
ax2.set_title('zoom')
ax2.set_xlabel('x')
ax2.set_ylabel('y')
ax2.plot(x,y)
fig
Use plt.subplots(nrows=1, ncols=2) to create the plot below.
fig, axes = plt.subplots(nrows=1, ncols=2)
Now plot (x,y) and (x,z) on the axes. Play around with the linewidth and style
fig, axes = plt.subplots(nrows=1, ncols=2)
axes[0].plot(x,y, ls='--', lw=3)
axes[1].plot(x,z, color='red', lw=4)
plt.tight_layout()
See if you can resize the plot by adding the figsize() argument in plt.subplots() are copying and pasting your previous code.
fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(12,3))
axes[0].plot(x,y, ls='-', lw=3)
axes[1].plot(x,z, ls='--', color='red', lw=4)
plt.tight_layout()