지방이의 Data Science Lab

[python] 이미지삽입 본문

Data Analysis/Python

[python] 이미지삽입

[지현] 2019. 8. 10. 00:29

import matplotlib.pyplot as plt
import matplotlib.image as mpimg
image = mpimg.imread("map.png")
plt.figure(figsize = (100,50))
plt.imshow(image)
#plt.show()

 

 

Comments