image into notebook code example
Example 1: jupyter notebook attach image
![title](img/picture.png)
Example 2: save image from jupyter notebook
plt.savefig('output.png', dpi=300, bbox_inches='tight')
Example 3: save image from jupyter notebook
fig.tight_layout()
plt.savefig('output.png', dpi=300)