Quiz 4!

Here is a quiz to test your understanding of the chapter on plotting.

We'll cover the following...
Technical Quiz
1.

Will the following code compile?

x = np.arange(0, 10)
y = np.linspace(0, 10, 8)
plt.plot(x, y)
A.

Yes

B.

No


1 / 5

The ...