aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/matplotlib-inline/README.md
diff options
context:
space:
mode:
authormonster <monster@ydb.tech>2022-07-07 14:41:37 +0300
committermonster <monster@ydb.tech>2022-07-07 14:41:37 +0300
commit06e5c21a835c0e923506c4ff27929f34e00761c2 (patch)
tree75efcbc6854ef9bd476eb8bf00cc5c900da436a2 /contrib/python/matplotlib-inline/README.md
parent03f024c4412e3aa613bb543cf1660176320ba8f4 (diff)
downloadydb-06e5c21a835c0e923506c4ff27929f34e00761c2.tar.gz
fix ya.make
Diffstat (limited to 'contrib/python/matplotlib-inline/README.md')
-rw-r--r--contrib/python/matplotlib-inline/README.md30
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');
-```