diff options
author | monster <monster@ydb.tech> | 2022-07-07 14:41:37 +0300 |
---|---|---|
committer | monster <monster@ydb.tech> | 2022-07-07 14:41:37 +0300 |
commit | 06e5c21a835c0e923506c4ff27929f34e00761c2 (patch) | |
tree | 75efcbc6854ef9bd476eb8bf00cc5c900da436a2 /contrib/python/matplotlib-inline/README.md | |
parent | 03f024c4412e3aa613bb543cf1660176320ba8f4 (diff) | |
download | ydb-06e5c21a835c0e923506c4ff27929f34e00761c2.tar.gz |
fix ya.make
Diffstat (limited to 'contrib/python/matplotlib-inline/README.md')
-rw-r--r-- | contrib/python/matplotlib-inline/README.md | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/contrib/python/matplotlib-inline/README.md b/contrib/python/matplotlib-inline/README.md deleted file mode 100644 index 9ef91180b1..0000000000 --- a/contrib/python/matplotlib-inline/README.md +++ /dev/null @@ -1,30 +0,0 @@ -# Matplotlib Inline Back-end for IPython and Jupyter - -## Installation - -With conda: - -```bash -conda install -c conda-forge notebook matplotlib -``` - -With pip: - -```bash -pip install notebook matplotlib -``` - -## Usage - -This package is included in IPython and can be used in a Jupyter Notebook: - -```python -%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'); -``` |