1
1
"""
2
- The axes_divider module provide helper classes to adjust the positions of
3
- multiple axes at the drawing time.
2
+ The axes_divider module provides helper classes to adjust the positions of
3
+ multiple axes at drawing time.
4
4
5
- Divider: this is the class that is used calculates the axes
5
+ Divider: this is the class that is used to calculate the axes
6
6
position. It divides the given rectangular area into several sub
7
7
rectangles. You initialize the divider by setting the horizontal
8
- and vertical list of sizes that the division will be based on. You
8
+ and vertical lists of sizes that the division will be based on. You
9
9
then use the new_locator method, whose return value is a callable
10
10
object that can be used to set the axes_locator of the axes.
11
11
@@ -31,7 +31,7 @@ class Divider(object):
31
31
horizontal and vertical lists of sizes
32
32
(:mod:`mpl_toolkits.axes_grid.axes_size`) that the division will
33
33
be based on. You then use the new_locator method to create a
34
- callable object that can be used to as the axes_locator of the
34
+ callable object that can be used as the axes_locator of the
35
35
axes.
36
36
"""
37
37
@@ -49,7 +49,7 @@ def __init__(self, fig, pos, horizontal, vertical,
49
49
for vertical division
50
50
:param aspect: if True, the overall rectangular area is reduced
51
51
so that the relative part of the horizontal and
52
- vertical scales have same scale.
52
+ vertical scales have the same scale.
53
53
:param anchor: Determine how the reduced rectangle is placed
54
54
when aspect is True.
55
55
"""
0 commit comments