Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2be44a commit f2992f2Copy full SHA for f2992f2
1 file changed
README.md
@@ -1 +1,30 @@
1
# Matplotlib Inline Back-end for IPython and Jupyter
2
+
3
+## Installation:
4
5
+With pip:
6
7
+```bash
8
+pip install matplotlib-inline
9
+```
10
11
+With conda:
12
13
14
+conda install -c conda-forge matplotlib-inline
15
16
17
+## Usage
18
19
+In a Jupyter Notebook:
20
21
+```python
22
+%matplotlib inline
23
24
+import matplotlib.pyplot as plt
25
+import numpy as np
26
27
+x = np.linspace(0, 3*np.pi, 500)
28
+plt.plot(x, np.sin(x**2))
29
+plt.title('A simple chirp');
30
0 commit comments