How to get the image if we have path in pandas dataframe
问题 I have the path of images inside the pandas dataframe I need to get the images inside the dataframe if I have path of it is it possible inside the dataframe? I need to store the images in the dataframe column along with their path. This is how I have tried it but its not working. Also the image size is small its 50x50 from IPython.core.display import HTML image=df['profile'] def path_to_image_html(path): return '<img src="'+ path + '" style=height:50px;"/>' a=HTML(df.to_html(escape=False