arcadia-devtools 094638589d intermediate changes 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

README.md

Matplotlib Inline Back-end for IPython and Jupyter

Installation

With conda:

conda install -c conda-forge notebook matplotlib

With pip:

pip install notebook matplotlib

Usage

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');