You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Modify the second axes data limits to match the first axes...
42
-
ax2.set_aspect(ax1.get_aspect())
43
-
ax2.set_xlim(ax1.get_xlim())
44
-
ax2.set_ylim(ax1.get_ylim())
45
-
46
-
fig.tight_layout()
47
-
fig.show()
48
-
```
49
-

50
-
51
-
An inset axes example.
52
-
```python
53
-
from matplotlib import cbook
54
-
import matplotlib.pyplot as plt
55
-
import numpy as np
56
-
from matplotview import inset_zoom_axes
57
-
58
-
defget_demo_image():
59
-
z = cbook.get_sample_data("axes_grid/bivariate_normal.npy", np_load=True)

87
-
88
-
Because views support recursive drawing, they can be used to create

0 commit comments