Matplotlib
## Basic
### pyplot
```python
import matplotlib.pyplot as plt
# plt.figure(figsize=(10,10), dpi=40)
plt.plot([1,2,3], [1,2,3])
plt.title("Info")
plt.xlabel("x axis")
plt.ylabel("y axis")
plt.show()
```
### subplot
```python
plt.subplot(1,2,1)
plt.plot([1,2,3], [1,2,3])
plt.title("1st subplot")
plt.subplot(1,2,2)
plt.plot([1,2,3], [4,2,1], "+")
plt.title("2nd subplot")
plt.show()
```
```python
```