![]() |
2 years ago | |
---|---|---|
.. | ||
.dist-info | e9656aae26 Restoring authorship annotation for <shadchin@yandex-team.ru>. Commit 2 of 2. | 3 years ago |
matplotlib_inline | e9656aae26 Restoring authorship annotation for <shadchin@yandex-team.ru>. Commit 2 of 2. | 3 years ago |
LICENSE | e9656aae26 Restoring authorship annotation for <shadchin@yandex-team.ru>. Commit 2 of 2. | 3 years ago |
README.md | e9656aae26 Restoring authorship annotation for <shadchin@yandex-team.ru>. Commit 2 of 2. | 3 years ago |
With conda:
conda install -c conda-forge notebook matplotlib
With pip:
pip install notebook matplotlib
This package is included in IPython and can be used in a Jupyter Notebook:
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 3*np.pi, 500)
plt.plot(x, np.sin(x**2))
plt.title('A simple chirp');