My goal is to display interactive charts. The problem is GitHub does not support it, the charts are not displayed. So, I am looking for the 2nd best option, that is non-interactive in GitHub and interactive in local.
The problem is that go.fig.show()
does not do that.
What I’ve tried:
-
go.fig.show(renderer="svg+plotly_mimetype+notebook")
→ interactive in local. not shown in GitHub. -
go.fig.show(renderer="svg")
→ not interactive in local, shown in GitHub. -
iplot(fig)
→ interactive in local, not shown in GitHub.
I am confused.