Skip to content

Instantly share code, notes, and snippets.

@crizCraig
Last active March 18, 2016 00:58
Show Gist options
  • Save crizCraig/00f017e4723ac8949f32 to your computer and use it in GitHub Desktop.
Save crizCraig/00f017e4723ac8949f32 to your computer and use it in GitHub Desktop.
plotly offline scatter
import plotly
from plotly.graph_objs import Scatter, Layout
plotly.offline.plot({
"data": [
Scatter(x=times, y=losses)
],
"layout": Layout(
title="loss over time"
)
})
@crizCraig
Copy link
Author

plotly_offline

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment