Last active
March 18, 2016 00:58
-
-
Save crizCraig/00f017e4723ac8949f32 to your computer and use it in GitHub Desktop.
plotly offline scatter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import plotly | |
from plotly.graph_objs import Scatter, Layout | |
plotly.offline.plot({ | |
"data": [ | |
Scatter(x=times, y=losses) | |
], | |
"layout": Layout( | |
title="loss over time" | |
) | |
}) |
Author
crizCraig
commented
Mar 18, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment