Saved Images
You can display images using one of the commands provided in this topic.
You can display images, using a command in the following format:
R
library("cdsw") download.file("https://upload.wikimedia.org/wikipedia/commons/2/29/Minard.png", "/cdn/Minard.png") image("Minard.png")
Python
import urllib from IPython.display import Image urllib.urlretrieve("http://upload.wikimedia.org/wikipedia/commons/2/29/Minard.png", "Minard.png") Image(filename="Minard.png")