I am considering moving from matplotlib
to plotly
.
plotly
seems great and all, but most of the documentation assumes that the user uses online API, not offline one. So, any example with the line
import plotly.plotly as py
needs to be converted to offline language somehow, using plotly.offline
.
What I've noticed is the functionality of plotly.offline
seems to be incomplete. First, plotly.offline
cannot replace plotly.plotly
. Also, there are some examples that only provides online versions of the code, like this one and this one too. They both seem to have no way to do that in offline mode, or at least I haven't found out how.
So, haven't I googled enough or is plotly
's offline functionality really incomplete?