Skip to content
New issue

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

No axes in inline pyplots #198

Open
falematte opened this issue Mar 10, 2018 · 2 comments
Open

No axes in inline pyplots #198

falematte opened this issue Mar 10, 2018 · 2 comments

Comments

@falematte
Copy link

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...

@millejoh
Copy link

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?

@falematte
Copy link
Author

falematte commented Mar 10, 2018

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()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants