I am struggling to understand why the matplotlib converter will not plot negative values. I have a dataframe I with negative numbers, which plots fine under normal matplotlib circumstances, but when converting to a plotly chart it strips the negative.
Using this code:
fig = plt.gcf()
plotly_fig = tls.mpl_to_plotly( fig )
py.iplot(plotly_fig)