How to make a very simple plot

[1]:
import matplotlib.pyplot as plt
import numpy as np
Matplotlib is building the font cache; this may take a moment.
[2]:
x = np.linspace(0, 10, 100)
y = np.sin(x)
plt.plot(x, y);
../_images/notebooks_tutorial_simple_plot_2_0.png
[ ]: