File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ matplotview provides a simple interface for creating "views" of matplotlib
5
5
axes, providing a simple way of displaying overviews and zoomed views of
6
6
data without plotting data twice.
7
7
8
+ ## Usage
9
+
10
+ matplotview provides two methods, ` view ` , and ` inset_zoom_axes ` . The ` view `
11
+ method accepts two ` Axes ` , and makes the first axes a view of the second. The
12
+ ` inset_zoom_axes ` method provides the same functionality as ` Axes.inset_axes ` ,
13
+ but the returned inset axes is configured to be a view of the parent axes.
14
+
8
15
## Examples
9
16
10
17
An example of two axes showing the same plot.
@@ -34,7 +41,7 @@ fig.show()
34
41
```
35
42
![ First example plot results, two views of the same plot.] ( _images/example1.png )
36
43
37
- An inset zoom example.
44
+ An inset axes example .
38
45
``` python
39
46
from matplotlib import cbook
40
47
import matplotlib.pyplot as plt
You can’t perform that action at this time.
0 commit comments