[Wangd Lhamo] - Fab Futures - Data Science
Home About
In [1]:
import pandas as pd
In [1]:
from IPython.display import HTML, display

display(HTML('<img src="images/presentation.png" width="400">'))
No description has been provided for this image
In [2]:
import matplotlib.pyplot as plt
import matplotlib.image as mpimg

img = mpimg.imread("images/presentation.png")   # use path if in a folder
plt.imshow(img)
plt.axis('off')
plt.show()
No description has been provided for this image
In [ ]: