-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Description
I am rendering Plotly Candlestick charts
-
The charts render locally on the Jupyter server and PyCharm
-
The chart does not render on Google Colab
My rendering code
import plotly.graph_objects as go
from plotly.offline import iplot
fig = go.Figure(data=[go.Candlestick(x=october['timestamp'],
open=october['open'],
high=october['high'],
low=october['low'],
close=october['close'])])
# Tried both methods
# fig.show()
iplot(fig)
Rendered locally:
Rendered on Google Colab:
The notebook source: https://github.com/miohtama/capitalgram-onchain-dex-quant-data/blob/master/docs/source/examples/plotting.ipynb
The Google Colab link: https://colab.research.google.com/github/miohtama/capitalgram-onchain-dex-quant-data/blob/master/docs/source/examples/plotting.ipynb
My questions are
-
How to debug
-
How to workaround if possible (happy to switch to Binder as the free notebook provider if it helps)
Metadata
Metadata
Assignees
Labels
No labels