I want to display two images, that I have them saved locally, in one single makedown cell side-by-side? I found previous post but it uses HTML()
not Image()
method.
The way I tried was:
from IPython.core.display import Image, display
display(Image('/whateverfile/counts1.png',width=100,height=100), Image('/whateverfile/counts2',width=100, height=100))
But that did not work.
Any ideas how to solve this?
Thanks