--- /srv/reproducible-results/rbuild-debian/r-b-build.aejt08fN/b1/python-cycler_0.11.0-1_i386.changes +++ /srv/reproducible-results/rbuild-debian/r-b-build.aejt08fN/b2/python-cycler_0.11.0-1_i386.changes ├── Files │ @@ -1,3 +1,3 @@ │ │ - e40e7f03623d160a445a8727fe12eab7 653356 doc optional python-cycler-doc_0.11.0-1_all.deb │ + 805fb025c1796257d668ff930171e17f 653348 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 1896 2021-11-04 03:48:25.000000 control.tar.xz │ │ --rw-r--r-- 0 0 0 651268 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 651264 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]: 
│ │ │ │ -{'marker': ['s', 'o', 's', 'o', 's', 'o'],
│ │ │ │ - 'color': ['r', 'r', 'g', 'g', 'b', 'b']}
│ │ │ │ +{'color': ['r', 'r', 'g', 'g', 'b', 'b'],
│ │ │ │ + 'marker': ['s', 'o', 's', 'o', 's', 'o']}
│ │ │ │  
│ │ │ │
│ │ │ │

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('marker', ['s', 'o', 's', 'o', 's', 'o']) + cycler('color', ['green', 'green', 'green', 'green', 'green', 'green']))
│ │ │ │ +Out[39]: (cycler('color', ['green', 'green', 'green', 'green', 'green', 'green']) + cycler('marker', ['s', 'o', 's', 'o', 's', 'o']))
│ │ │ │  
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │

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]: │ │ │ │ │ -{'marker': ['s', 'o', 's', 'o', 's', 'o'], │ │ │ │ │ - 'color': ['r', 'r', 'g', 'g', 'b', 'b']} │ │ │ │ │ +{'color': ['r', 'r', 'g', 'g', 'b', 'b'], │ │ │ │ │ + 'marker': ['s', 'o', 's', 'o', 's', 'o']} │ │ │ │ │ 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('marker', ['s', 'o', 's', 'o', 's', 'o']) + cycler('color', │ │ │ │ │ -['green', 'green', 'green', 'green', 'green', 'green'])) │ │ │ │ │ +Out[39]: (cycler('color', ['green', 'green', 'green', 'green', 'green', │ │ │ │ │ +'green']) + cycler('marker', ['s', 'o', 's', 'o', 's', 'o'])) │ │ │ │ │ │ │ │ │ │ **** 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,