I would like to simply plot in the same figure two graphs with different scales. Following the standard example http://matplotlib.org/examples/api/two_scales.html, I tried this on the jupyter notebook adding the lines
import matplotlib as mpl
%matplotlib inline
import matplotlib.pyplot as plt
import mpld3
mpld3.enable_notebook()
This doesn't work. I get a figure without the plot for the first graph. This was also in https://github.com/mpld3/mpld3/issues/188 noted as a problem but it is surely old, isn't it? Is there anything I can do? This is probably a very basic question, but I don't understand what I'm doing wrong and I don't find any solution! Thanks for any comment!