Skip to content

Instantly share code, notes, and snippets.

@GermanCM
Created June 15, 2020 09:39
Show Gist options
  • Save GermanCM/6eb669f47e301a39af6fbe13d1196ac5 to your computer and use it in GitHub Desktop.
Save GermanCM/6eb669f47e301a39af6fbe13d1196ac5 to your computer and use it in GitHub Desktop.
Line chart with plotly
import plotly.graph_objects as go
fig = go.Figure(data=go.Scatter(x=dataset.index, y=dataset.dependent_variable, mode='lines+markers+text'))
fig.show()
@GermanCM
Copy link
Author

image

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