Hi, I run the following code in notebook, and the output is “No renderer could be found for output. It has the following MIME types: application/vnd.plotly.v1+json”, I wanna know why?
import plotly.plotly
x1 = [1, 2, 3, 5, 6]
y1 = [1, 4.5, 7, 24, 38]
trace1 = dict(x=x1, y=y1)
data = [trace1]
plotly.offline.iplot(data, filename=‘s0_first_plot’)