how to insert an image into jupyter notebook code example
Example 1: putting images in jupyter markdown
![title]("img/picture.png")
Example 2: jupyter notebook attach image
![title](img/picture.png)
Example 3: save image from jupyter notebook
fig.tight_layout()
plt.savefig('output.png', dpi=300)