We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do you have any idea why inline plots are working fine but I get no axis? If I open the notebook in my browser all the images have the axes...
The text was updated successfully, but these errors were encountered:
When you get time you should create an issue over at millejoh/emacs-ipython-notebook. tkf is no longer maintaining ein.
That said - could you share the python code you are using to generate the plot?
Sorry, something went wrong.
ok! Here is the code
%matplotlib inline import matplotlib.pyplot as plt import numpy as np n = np.arange(0, 20, 1) delta=0.01 t = 0.025 plt.plot(n,(1+t)**n + delta*(((t+1)**n-1)/t),'b--',n,(1+t)**n, 'r--') plt.show()
No branches or pull requests
Do you have any idea why inline plots are working fine but I get no axis? If I open the notebook in my browser all the images have the axes...
The text was updated successfully, but these errors were encountered: