--- /srv/reproducible-results/rbuild-debian/r-b-build.z553uKLK/b1/python-cycler_0.11.0-1_armhf.changes +++ /srv/reproducible-results/rbuild-debian/r-b-build.z553uKLK/b2/python-cycler_0.11.0-1_armhf.changes ├── Files │ @@ -1,3 +1,3 @@ │ │ - e3ce8dcd497acacfa8ae65823f2faeea 647604 doc optional python-cycler-doc_0.11.0-1_all.deb │ + d07a3fac939df02a156f897e654305a9 647616 doc optional python-cycler-doc_0.11.0-1_all.deb │ 1a63ff87b5a4a76e291f5595a6c0d2db 7948 python optional python3-cycler_0.11.0-1_all.deb ├── python-cycler-doc_0.11.0-1_all.deb │ ├── file list │ │ @@ -1,3 +1,3 @@ │ │ -rw-r--r-- 0 0 0 4 2021-11-04 03:48:25.000000 debian-binary │ │ --rw-r--r-- 0 0 0 1888 2021-11-04 03:48:25.000000 control.tar.xz │ │ --rw-r--r-- 0 0 0 645524 2021-11-04 03:48:25.000000 data.tar.xz │ │ +-rw-r--r-- 0 0 0 1892 2021-11-04 03:48:25.000000 control.tar.xz │ │ +-rw-r--r-- 0 0 0 645532 2021-11-04 03:48:25.000000 data.tar.xz │ ├── control.tar.xz │ │ ├── control.tar │ │ │ ├── ./md5sums │ │ │ │ ├── ./md5sums │ │ │ │ │┄ Files differ │ ├── data.tar.xz │ │ ├── data.tar │ │ │ ├── ./usr/share/doc/python-cycler-doc/html/index.html │ │ │ │ @@ -282,26 +282,26 @@ │ │ │ │ │ │ │ │
│ │ │ │

Inspecting the Cycler

│ │ │ │

To inspect the values of the transposed Cycler use │ │ │ │ the Cycler.by_key method:

│ │ │ │
In [36]: c_m.by_key()
│ │ │ │  Out[36]: 
│ │ │ │ -{'color': ['r', 'r', 'g', 'g', 'b', 'b'],
│ │ │ │ - 'marker': ['s', 'o', 's', 'o', 's', 'o']}
│ │ │ │ +{'marker': ['s', 'o', 's', 'o', 's', 'o'],
│ │ │ │ + 'color': ['r', 'r', 'g', 'g', 'b', 'b']}
│ │ │ │  
│ │ │ │
│ │ │ │

This dict can be mutated and used to create a new Cycler with │ │ │ │ the updated values

│ │ │ │
In [37]: bk = c_m.by_key()
│ │ │ │  
│ │ │ │  In [38]: bk['color'] = ['green'] * len(c_m)
│ │ │ │  
│ │ │ │  In [39]: cycler(**bk)
│ │ │ │ -Out[39]: (cycler('color', ['green', 'green', 'green', 'green', 'green', 'green']) + cycler('marker', ['s', 'o', 's', 'o', 's', 'o']))
│ │ │ │ +Out[39]: (cycler('marker', ['s', 'o', 's', 'o', 's', 'o']) + cycler('color', ['green', 'green', 'green', 'green', 'green', 'green']))
│ │ │ │  
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │

Examples

│ │ │ │

We can use Cycler instances to cycle over one or more kwarg to │ │ │ │ plot :

│ │ │ │ ├── html2text {} │ │ │ │ │ @@ -183,25 +183,25 @@ │ │ │ │ │ Out[35]: cycler('color', ['g', 'b']) │ │ │ │ │ to return a sub-set of the cycle as a new Cycler. │ │ │ │ │ │ │ │ │ │ **** Inspecting the Cycler¶ **** │ │ │ │ │ To inspect the values of the transposed Cycler use the Cycler.by_key method: │ │ │ │ │ In [36]: c_m.by_key() │ │ │ │ │ Out[36]: │ │ │ │ │ -{'color': ['r', 'r', 'g', 'g', 'b', 'b'], │ │ │ │ │ - 'marker': ['s', 'o', 's', 'o', 's', 'o']} │ │ │ │ │ +{'marker': ['s', 'o', 's', 'o', 's', 'o'], │ │ │ │ │ + 'color': ['r', 'r', 'g', 'g', 'b', 'b']} │ │ │ │ │ This dict can be mutated and used to create a new Cycler with the updated │ │ │ │ │ values │ │ │ │ │ In [37]: bk = c_m.by_key() │ │ │ │ │ │ │ │ │ │ In [38]: bk['color'] = ['green'] * len(c_m) │ │ │ │ │ │ │ │ │ │ In [39]: cycler(**bk) │ │ │ │ │ -Out[39]: (cycler('color', ['green', 'green', 'green', 'green', 'green', │ │ │ │ │ -'green']) + cycler('marker', ['s', 'o', 's', 'o', 's', 'o'])) │ │ │ │ │ +Out[39]: (cycler('marker', ['s', 'o', 's', 'o', 's', 'o']) + cycler('color', │ │ │ │ │ +['green', 'green', 'green', 'green', 'green', 'green'])) │ │ │ │ │ │ │ │ │ │ **** Examples¶ **** │ │ │ │ │ We can use Cycler instances to cycle over one or more kwarg to plot : │ │ │ │ │ from cycler import cycler │ │ │ │ │ from itertools import cycle │ │ │ │ │ │ │ │ │ │ fig, (ax1, ax2) = plt.subplots(1, 2, tight_layout=True,