Answers for "how to create image in jupyter notebook"

8

add picture to jupyter notebook

from IPython import display
display.Image("./image.png")
Posted by: Guest on July-22-2021
0

save image from jupyter notebook

fig.tight_layout()
plt.savefig('output.png', dpi=300)
Posted by: Guest on July-18-2020

Code answers related to "how to create image in jupyter notebook"

Python Answers by Framework

Browse Popular Code Answers by Language