Topic 6 Flashcards
import matplotlib package
import matplotlib.pylot as plt
matplot lib interfaces
- Simple plotting like in MATLAB and all the commands
are applied to the current figure and axes. - Plotting functions that apply directly to the Figure and
Axes objects.
subplot function for matplotlib
fig, axes = plt.subplots(<number>,</number>
<number>)
</number>
Initialise the figure
fig, (ax1, ax2) = plt.subplots(nrows=1, ncols=2,
figsize=(7, 3))
Create the data to plot for cosine and sine graph
xvalues = np.linspace(0, 2 * np.pi, 100)
cosine_values = np.cos(xvalues)
sine_values = np.sin(xvalues)
Plot the cosine graph on the left and sine graph on the right
ax1.plot(xvalues, cosine_values, label=”Cosine”)
ax2.plot(xvalues, sine_values, label=“Sine”)
Label axis
ax1.set_xlabel(r”$x$”)
ax1.set_ylabel(r”$\cos(x)$”)
ax2.set_xlabel(r”$x$”)
ax2.set_ylabel(r”$\sin(x)$”)
remove the overlap between the plots
plt.subplots_adjust(wspace=0.4)
fontsize:
fontsize=
set axis limits
ax1.set_xlim([0, 2 * np.pi])
ax1.set_ylim([-1, 1])
ax2.set_xlim([0, 2 * np.pi])
ax2.set_ylim([-1, 1])
add a legend
ax1.legend()
ax2.legend()