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
When plotting to a figure with multiple subplots, additional (non-pygimli) plots afterwards get netglected in Jupyter Notebook output
Operating system: Linux Python version: 3.5 pyGIMLi version: v1.0.5+71 Way of installation: manual compilation from source
Tell us how to reproduce this issue. Ideally, you could paste the code that produces the error:
import pygimli as pg import numpy as np import matplotlib.pyplot as plt mesh = pg.createGrid([1,2,3,4],[1,2,3,4]) x = np.linspace(0,4*np.pi) y = np.sin(x) fig, (ax1, ax2) = plt.subplots(2) pg.show(mesh, ax=ax2) ax1.plot(x,y)
The text was updated successfully, but these errors were encountered:
910257b
florian-wagner
No branches or pull requests
Problem description
When plotting to a figure with multiple subplots, additional (non-pygimli) plots afterwards get netglected in Jupyter Notebook output
Your environment
Operating system: Linux
Python version: 3.5
pyGIMLi version: v1.0.5+71
Way of installation: manual compilation from source
Steps to reproduce
Tell us how to reproduce this issue. Ideally, you could paste the code that produces the error:
Expected behavior
Actual behavior
The text was updated successfully, but these errors were encountered: