@@ -40,10 +40,10 @@ composition and iteration logic.
40
40
Base
41
41
----
42
42
43
- A single entry `Cycler ` object can be used to easily
44
- cycle over a single style. To create the `Cycler ` use the :py:func: `cycler `
45
- function to link a key/style/kwarg to series of values. The key must be
46
- hashable (as it will eventually be used as the key in a :obj: `dict `).
43
+ A single entry `Cycler ` object can be used to easily cycle over a single style.
44
+ To create the `Cycler ` use the :py:func: `cycler ` function to link a
45
+ key/style/keyword argument to series of values. The key must be hashable (as it
46
+ will eventually be used as the key in a :obj: `dict `).
47
47
48
48
.. ipython :: python
49
49
@@ -53,7 +53,7 @@ hashable (as it will eventually be used as the key in a :obj:`dict`).
53
53
color_cycle = cycler(color = [' r' , ' g' , ' b' ])
54
54
color_cycle
55
55
56
- The `Cycler ` knows it's length and keys:
56
+ The `Cycler ` knows its length and keys:
57
57
58
58
.. ipython :: python
59
59
@@ -97,7 +97,7 @@ create complex multi-key cycles.
97
97
Addition
98
98
~~~~~~~~
99
99
100
- Equal length `Cycler ` s with different keys can be added to get the
100
+ Equal length `Cycler `\ s with different keys can be added to get the
101
101
'inner' product of two cycles
102
102
103
103
.. ipython :: python
@@ -180,7 +180,7 @@ matrices)
180
180
Integer Multiplication
181
181
~~~~~~~~~~~~~~~~~~~~~~
182
182
183
- `Cycler ` s can also be multiplied by integer values to increase the length.
183
+ `Cycler `\ s can also be multiplied by integer values to increase the length.
184
184
185
185
.. ipython :: python
186
186
@@ -331,8 +331,7 @@ the same style.
331
331
Exceptions
332
332
----------
333
333
334
-
335
- A :obj: `ValueError ` is raised if unequal length `Cycler ` s are added together
334
+ A :obj: `ValueError ` is raised if unequal length `Cycler `\s are added together
336
335
337
336
.. ipython :: python
338
337
:okexcept:
@@ -401,6 +400,6 @@ However, if you want to do something more complicated:
401
400
402
401
ax.legend(loc=0)
403
402
404
- the plotting logic can quickly become very involved. To address this and allow easy
405
- cycling over arbitrary ``kwargs `` the `Cycler ` class, a composable
406
- kwarg iterator, was developed.
403
+ the plotting logic can quickly become very involved. To address this and allow
404
+ easy cycling over arbitrary ``kwargs `` the `Cycler ` class, a composable keyword
405
+ argument iterator, was developed.
0 commit comments