py2ls 0.2.4.9.6__py3-none-any.whl → 0.2.4.9.8__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Binary file
@@ -0,0 +1,15 @@
1
+ # Add grid lines and turn the legend frame on
2
+
3
+ # Grid lines
4
+ axes.grid : True
5
+ axes.axisbelow : True
6
+ grid.linestyle : --
7
+ grid.color : k
8
+ grid.alpha : 0.5
9
+ grid.linewidth : 0.5
10
+
11
+ # Legend
12
+ legend.frameon : True
13
+ legend.framealpha : 1.0
14
+ legend.fancybox : True
15
+ legend.numpoints : 1
@@ -0,0 +1,6 @@
1
+ # High-contrast color scheme
2
+ # color-blind safe
3
+ # from Paul Tot's website: https://personal.sron.nl/~pault/
4
+
5
+ # Set color cycle
6
+ axes.prop_cycle : cycler('color', ['004488', 'DDAA33', 'BB5566'])
@@ -0,0 +1,4 @@
1
+ # Matplotlib style for high visability plots (i.e., bright colors!!!)
2
+
3
+ # Set color cycle
4
+ axes.prop_cycle : (cycler('color', ["0d49fb", "e6091c", "26eb47", "8936df", "fec32d", "25d7fd"]) + cycler('ls', ['-', '--', '-.', ':', '-', '--']))
@@ -0,0 +1,15 @@
1
+ # Matplotlib style for IEEE plots
2
+ # This style should work for most two-column journals
3
+
4
+ # Set color cycle
5
+ # Set line style as well for black and white graphs
6
+ axes.prop_cycle : (cycler('color', ['k', 'r', 'b', 'g']) + cycler('ls', ['-', '--', ':', '-.']))
7
+
8
+ # Set default figure size
9
+ figure.figsize : 3.3, 2.5
10
+ figure.dpi : 600
11
+
12
+ # Font sizes
13
+ font.size : 8
14
+ font.family : serif
15
+ font.serif : Times
@@ -0,0 +1,6 @@
1
+ # Light color scheme
2
+ # color-blind safe
3
+ # from Paul Tot's website: https://personal.sron.nl/~pault/
4
+
5
+ # Set color cycle
6
+ axes.prop_cycle : cycler('color', ['77AADD', 'EE8866', 'EEDD88', 'FFAABB', '99DDFF', '44BB99', 'BBCC33', 'AAAA00', 'DDDDDD'])
@@ -0,0 +1,6 @@
1
+ # Muted color scheme
2
+ # color-blind safe
3
+ # from Paul Tot's website: https://personal.sron.nl/~pault/
4
+
5
+ # Set color cycle
6
+ axes.prop_cycle : cycler('color', ['CC6677', '332288', 'DDCC77', '117733', '88CCEE', '882255', '44AA99', '999933', 'AA4499', 'DDDDDD'])