Topic 6 Flashcards

1
Q

import matplotlib package

A

import matplotlib.pylot as plt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

matplot lib interfaces

A
  1. Simple plotting like in MATLAB and all the commands
    are applied to the current figure and axes.
  2. Plotting functions that apply directly to the Figure and
    Axes objects.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

subplot function for matplotlib

A

fig, axes = plt.subplots(<number>,</number>

<number>)
</number>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Initialise the figure

A

fig, (ax1, ax2) = plt.subplots(nrows=1, ncols=2,
figsize=(7, 3))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Create the data to plot for cosine and sine graph

A

xvalues = np.linspace(0, 2 * np.pi, 100)
cosine_values = np.cos(xvalues)
sine_values = np.sin(xvalues)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Plot the cosine graph on the left and sine graph on the right

A

ax1.plot(xvalues, cosine_values, label=”Cosine”)
ax2.plot(xvalues, sine_values, label=“Sine”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Label axis

A

ax1.set_xlabel(r”$x$”)
ax1.set_ylabel(r”$\cos(x)$”)
ax2.set_xlabel(r”$x$”)
ax2.set_ylabel(r”$\sin(x)$”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

remove the overlap between the plots

A

plt.subplots_adjust(wspace=0.4)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

fontsize:

A

fontsize=

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

set axis limits

A

ax1.set_xlim([0, 2 * np.pi])
ax1.set_ylim([-1, 1])
ax2.set_xlim([0, 2 * np.pi])
ax2.set_ylim([-1, 1])

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

add a legend

A

ax1.legend()
ax2.legend()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly