statworx_theme 2.0.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,872 @@
1
+ # ____ _____ _ _______ _____ ____ __ __
2
+ # / ___|_ _|/ \|_ _\ \ / / _ \| _ \ \ \/ /
3
+ # \___ \ | | / _ \ | | \ \ /\ / / | | | |_) | \ /
4
+ # ___) || |/ ___ \| | \ V V /| |_| | _ < / \
5
+ # |____/ |_/_/ \_\_| \_/\_/ \___/|_| \_\/_/\_\
6
+ #
7
+ # _____ _ _ _____ __ __ _____
8
+ # |_ _| | | | ____| \/ | ____|
9
+ # | | | |_| | _| | |\/| | _|
10
+ # | | | _ | |___| | | | |___
11
+ # |_| |_| |_|_____|_| |_|_____|
12
+ #
13
+
14
+
15
+ # ### AXES
16
+ axes.titleweight: bold # font weight of title
17
+ # axes.labelweight: 100 # font weight of title
18
+
19
+ axes.facecolor : 00000000 # axes background color
20
+ axes.edgecolor : 0000006d # axes edge color
21
+ axes.labelcolor : 000000D9
22
+
23
+
24
+ axes.spines.left: True # display axis spines
25
+ axes.spines.bottom: True
26
+ axes.spines.top: False
27
+ axes.spines.right: False
28
+
29
+ axes.linewidth : 1.0 # edge linewidth
30
+ axes.grid : True # display grid or not
31
+ axes.titlesize : 12 # fontsize of the axes title
32
+ axes.titlepad : 15 # vertical offset of the axes title
33
+ axes.labelsize : 12 # fontsize of the x any y labels
34
+ axes.labelpad : 8.0 # space between label and axis
35
+ axes.prop_cycle : cycler('color', ['0000BF', '9BAEC1', '9999FF', '6C7D8C', 'C7014F', '83FF83', 'FF9EC4', '009600'])
36
+
37
+ ### LINES
38
+ lines.linewidth : 1.5 # line width in points
39
+ lines.markersize : 4 # markersize, in points
40
+
41
+ ### FONT
42
+ font.family : sans-serif
43
+ font.weight: 100
44
+ font.sans-serif: Arial, DejaVu Sans, Bitstream Vera Sans, Computer Modern Sans Serif, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif
45
+
46
+ ### TICKS
47
+ xtick.color : 0000003d # color of the tick labels
48
+ ytick.color : 0000003d # color of the tick labels
49
+ xtick.labelcolor : 000000bb # color of the tick labels
50
+ ytick.labelcolor : 000000bb # color of the tick labels
51
+
52
+ xtick.major.size : 8.25 # major tick size in points
53
+ xtick.minor.size : 4.125 # minor tick size in points
54
+ xtick.major.width : 0.75 # major tick width in points
55
+ xtick.minor.width : 0.75 # minor tick width in points
56
+ xtick.major.pad : 5 # distance to major tick label in points
57
+ xtick.minor.pad : 5 # distance to the minor tick label in points
58
+ xtick.labelsize : 9 # fontsize of the tick labels
59
+
60
+ ytick.major.size : 8.25 # major tick size in points
61
+ ytick.minor.size : 4.125 # minor tick size in points
62
+ ytick.major.width : 0.75 # major tick width in points
63
+ ytick.minor.width : 0.75 # minor tick width in points
64
+ ytick.major.pad : 5 # distance to major tick label in points
65
+ ytick.minor.pad : 5 # distance to the minor tick label in points
66
+ ytick.labelsize : 9 # fontsize of the tick labels
67
+
68
+ ### GRID
69
+ grid.color : 000000 # grid color
70
+ grid.linestyle: - # solid
71
+ grid.linewidth : 0.75 # in points
72
+ grid.alpha : .24 # transparency, between 0.0 and 1.0
73
+
74
+ ### LEGEND
75
+ legend.facecolor : FFFFFF # legend background color (when 'inherit' uses axes.facecolor)
76
+ legend.edgecolor : BBBBBB # legend edge color (when 'inherit' uses axes.edgecolor)
77
+
78
+ legend.fancybox : False # if True, use a rounded box for the
79
+ legend.shadow : False
80
+ legend.frameon : True # whether or not to draw a frame around legend
81
+ legend.framealpha : .7 # opacity of of legend frame
82
+
83
+ legend.fontsize: 10
84
+ legend.title_fontsize: 10
85
+
86
+ ### MARKER
87
+ markers.fillstyle: full ## full|left|right|bottom|top|none
88
+
89
+ ### FONT
90
+ text.color : black
91
+
92
+ ### PATCH
93
+ patch.edgecolor: white # if forced, or patch is not filled
94
+ patch.force_edgecolor: False # True to always use edgecolor
95
+ patch.linewidth: .5 # edge width in points.
96
+
97
+ ### FIGURE
98
+ figure.titlesize: large # size of the figure title (``Figure.suptitle()``)
99
+ # figure.titleweight: bold # weight of the figure title
100
+ # figure.dpi: 100 # make it high res
101
+
102
+ ### SAVEFIG
103
+ # savefig.format: svg # {png, ps, pdf, svg}
104
+ ####################################################################################################
105
+ #### ALL OPTIONS
106
+ ####################################################################################################
107
+
108
+ ## NOTE FOR END USERS: DO NOT EDIT THIS FILE!
109
+ ##
110
+ ## This is a sample Matplotlib configuration file - you can find a copy
111
+ ## of it on your system in site-packages/matplotlib/mpl-data/matplotlibrc
112
+ ## (relative to your Python installation location).
113
+ ##
114
+ ## You should find a copy of it on your system at
115
+ ## site-packages/matplotlib/mpl-data/matplotlibrc (relative to your Python
116
+ ## installation location). DO NOT EDIT IT!
117
+ ##
118
+ ## If you wish to change your default style, copy this file to one of the
119
+ ## following locations:
120
+ ## Unix/Linux:
121
+ ## $HOME/.config/matplotlib/matplotlibrc OR
122
+ ## $XDG_CONFIG_HOME/matplotlib/matplotlibrc (if $XDG_CONFIG_HOME is set)
123
+ ## Other platforms:
124
+ ## $HOME/.matplotlib/matplotlibrc
125
+ ## and edit that copy.
126
+ ##
127
+ ## See https://matplotlib.org/users/customizing.html#the-matplotlibrc-file
128
+ ## for more details on the paths which are checked for the configuration file.
129
+ ##
130
+ ## Blank lines, or lines starting with a comment symbol, are ignored, as are
131
+ ## trailing comments. Other lines must have the format:
132
+ ## key: val # optional comment
133
+ ##
134
+ ## Formatting: Use PEP8-like style (as enforced in the rest of the codebase).
135
+ ## All lines start with an additional '#', so that removing all leading '#'s
136
+ ## yields a valid style file.
137
+ ##
138
+ ## Colors: for the color values below, you can either use
139
+ ## - a Matplotlib color string, such as r, k, or b
140
+ ## - an RGB tuple, such as (1.0, 0.5, 0.0)
141
+ ## - a hex string, such as ff00ff
142
+ ## - a scalar grayscale intensity such as 0.75
143
+ ## - a legal html color name, e.g., red, blue, darkslategray
144
+ ##
145
+ ## Matplotlib configuration are currently divided into following parts:
146
+ ## - BACKENDS
147
+ ## - LINES
148
+ ## - PATCHES
149
+ ## - HATCHES
150
+ ## - BOXPLOT
151
+ ## - FONT
152
+ ## - TEXT
153
+ ## - LaTeX
154
+ ## - AXES
155
+ ## - DATES
156
+ ## - TICKS
157
+ ## - GRIDS
158
+ ## - LEGEND
159
+ ## - FIGURE
160
+ ## - IMAGES
161
+ ## - CONTOUR PLOTS
162
+ ## - ERRORBAR PLOTS
163
+ ## - HISTOGRAM PLOTS
164
+ ## - SCATTER PLOTS
165
+ ## - AGG RENDERING
166
+ ## - PATHS
167
+ ## - SAVING FIGURES
168
+ ## - INTERACTIVE KEYMAPS
169
+ ## - ANIMATION
170
+
171
+ ##### CONFIGURATION BEGINS HERE
172
+
173
+
174
+ ## ***************************************************************************
175
+ ## * BACKENDS *
176
+ ## ***************************************************************************
177
+ ## The default backend. If you omit this parameter, the first working
178
+ ## backend from the following list is used:
179
+ ## MacOSX QtAgg Gtk4Agg Gtk3Agg TkAgg WxAgg Agg
180
+ ## Other choices include:
181
+ ## QtCairo GTK4Cairo GTK3Cairo TkCairo WxCairo Cairo
182
+ ## Qt5Agg Qt5Cairo Wx # deprecated.
183
+ ## PS PDF SVG Template
184
+ ## You can also deploy your own backend outside of Matplotlib by referring to
185
+ ## the module name (which must be in the PYTHONPATH) as 'module://my_backend'.
186
+ ##backend: Agg
187
+
188
+ ## The port to use for the web server in the WebAgg backend.
189
+ #webagg.port: 8988
190
+
191
+ ## The address on which the WebAgg web server should be reachable
192
+ #webagg.address: 127.0.0.1
193
+
194
+ ## If webagg.port is unavailable, a number of other random ports will
195
+ ## be tried until one that is available is found.
196
+ #webagg.port_retries: 50
197
+
198
+ ## When True, open the web browser to the plot that is shown
199
+ #webagg.open_in_browser: True
200
+
201
+ ## If you are running pyplot inside a GUI and your backend choice
202
+ ## conflicts, we will automatically try to find a compatible one for
203
+ ## you if backend_fallback is True
204
+ #backend_fallback: True
205
+
206
+ #interactive: False
207
+ #toolbar: toolbar2 # {None, toolbar2, toolmanager}
208
+ #timezone: UTC # a pytz timezone string, e.g., US/Central or Europe/Paris
209
+
210
+
211
+ ## ***************************************************************************
212
+ ## * LINES *
213
+ ## ***************************************************************************
214
+ ## See https://matplotlib.org/api/artist_api.html#module-matplotlib.lines
215
+ ## for more information on line properties.
216
+ #lines.linewidth: 1.5 # line width in points
217
+ #lines.linestyle: - # solid line
218
+ #lines.color: C0 # has no affect on plot(); see axes.prop_cycle
219
+ #lines.marker: None # the default marker
220
+ #lines.markerfacecolor: auto # the default marker face color
221
+ #lines.markeredgecolor: auto # the default marker edge color
222
+ #lines.markeredgewidth: 1.0 # the line width around the marker symbol
223
+ #lines.markersize: 6 # marker size, in points
224
+ #lines.dash_joinstyle: round # {miter, round, bevel}
225
+ #lines.dash_capstyle: butt # {butt, round, projecting}
226
+ #lines.solid_joinstyle: round # {miter, round, bevel}
227
+ #lines.solid_capstyle: projecting # {butt, round, projecting}
228
+ #lines.antialiased: True # render lines in antialiased (no jaggies)
229
+
230
+ ## The three standard dash patterns. These are scaled by the linewidth.
231
+ #lines.dashed_pattern: 3.7, 1.6
232
+ #lines.dashdot_pattern: 6.4, 1.6, 1, 1.6
233
+ #lines.dotted_pattern: 1, 1.65
234
+ #lines.scale_dashes: True
235
+
236
+ #markers.fillstyle: full # {full, left, right, bottom, top, none}
237
+
238
+ #pcolor.shading: auto
239
+ #pcolormesh.snap: True # Whether to snap the mesh to pixel boundaries. This is
240
+ # provided solely to allow old test images to remain
241
+ # unchanged. Set to False to obtain the previous behavior.
242
+
243
+ ## ***************************************************************************
244
+ ## * PATCHES *
245
+ ## ***************************************************************************
246
+ ## Patches are graphical objects that fill 2D space, like polygons or circles.
247
+ ## See https://matplotlib.org/api/artist_api.html#module-matplotlib.patches
248
+ ## for more information on patch properties.
249
+ #patch.linewidth: 1 # edge width in points.
250
+ #patch.facecolor: C0
251
+ #patch.edgecolor: black # if forced, or patch is not filled
252
+ #patch.force_edgecolor: False # True to always use edgecolor
253
+ #patch.antialiased: True # render patches in antialiased (no jaggies)
254
+
255
+
256
+ ## ***************************************************************************
257
+ ## * HATCHES *
258
+ ## ***************************************************************************
259
+ #hatch.color: black
260
+ #hatch.linewidth: 1.0
261
+
262
+
263
+ ## ***************************************************************************
264
+ ## * BOXPLOT *
265
+ ## ***************************************************************************
266
+ #boxplot.notch: False
267
+ #boxplot.vertical: True
268
+ #boxplot.whiskers: 1.5
269
+ #boxplot.bootstrap: None
270
+ #boxplot.patchartist: False
271
+ #boxplot.showmeans: False
272
+ #boxplot.showcaps: True
273
+ #boxplot.showbox: True
274
+ #boxplot.showfliers: True
275
+ #boxplot.meanline: False
276
+
277
+ #boxplot.flierprops.color: black
278
+ #boxplot.flierprops.marker: o
279
+ #boxplot.flierprops.markerfacecolor: none
280
+ #boxplot.flierprops.markeredgecolor: black
281
+ #boxplot.flierprops.markeredgewidth: 1.0
282
+ #boxplot.flierprops.markersize: 6
283
+ #boxplot.flierprops.linestyle: none
284
+ #boxplot.flierprops.linewidth: 1.0
285
+
286
+ #boxplot.boxprops.color: black
287
+ #boxplot.boxprops.linewidth: 1.0
288
+ #boxplot.boxprops.linestyle: -
289
+
290
+ #boxplot.whiskerprops.color: black
291
+ #boxplot.whiskerprops.linewidth: 1.0
292
+ #boxplot.whiskerprops.linestyle: -
293
+
294
+ #boxplot.capprops.color: black
295
+ #boxplot.capprops.linewidth: 1.0
296
+ #boxplot.capprops.linestyle: -
297
+
298
+ #boxplot.medianprops.color: C1
299
+ #boxplot.medianprops.linewidth: 1.0
300
+ #boxplot.medianprops.linestyle: -
301
+
302
+ #boxplot.meanprops.color: C2
303
+ #boxplot.meanprops.marker: ^
304
+ #boxplot.meanprops.markerfacecolor: C2
305
+ #boxplot.meanprops.markeredgecolor: C2
306
+ #boxplot.meanprops.markersize: 6
307
+ #boxplot.meanprops.linestyle: --
308
+ #boxplot.meanprops.linewidth: 1.0
309
+
310
+
311
+ ## ***************************************************************************
312
+ ## * FONT *
313
+ ## ***************************************************************************
314
+ ## The font properties used by `text.Text`.
315
+ ## See https://matplotlib.org/api/font_manager_api.html for more information
316
+ ## on font properties. The 6 font properties used for font matching are
317
+ ## given below with their default values.
318
+ ##
319
+ ## The font.family property can take either a concrete font name (not supported
320
+ ## when rendering text with usetex), or one of the following five generic
321
+ ## values:
322
+ ## - 'serif' (e.g., Times),
323
+ ## - 'sans-serif' (e.g., Helvetica),
324
+ ## - 'cursive' (e.g., Zapf-Chancery),
325
+ ## - 'fantasy' (e.g., Western), and
326
+ ## - 'monospace' (e.g., Courier).
327
+ ## Each of these values has a corresponding default list of font names
328
+ ## (font.serif, etc.); the first available font in the list is used. Note that
329
+ ## for font.serif, font.sans-serif, and font.monospace, the first element of
330
+ ## the list (a DejaVu font) will always be used because DejaVu is shipped with
331
+ ## Matplotlib and is thus guaranteed to be available; the other entries are
332
+ ## left as examples of other possible values.
333
+ ##
334
+ ## The font.style property has three values: normal (or roman), italic
335
+ ## or oblique. The oblique style will be used for italic, if it is not
336
+ ## present.
337
+ ##
338
+ ## The font.variant property has two values: normal or small-caps. For
339
+ ## TrueType fonts, which are scalable fonts, small-caps is equivalent
340
+ ## to using a font size of 'smaller', or about 83%% of the current font
341
+ ## size.
342
+ ##
343
+ ## The font.weight property has effectively 13 values: normal, bold,
344
+ ## bolder, lighter, 100, 200, 300, ..., 900. Normal is the same as
345
+ ## 400, and bold is 700. bolder and lighter are relative values with
346
+ ## respect to the current weight.
347
+ ##
348
+ ## The font.stretch property has 11 values: ultra-condensed,
349
+ ## extra-condensed, condensed, semi-condensed, normal, semi-expanded,
350
+ ## expanded, extra-expanded, ultra-expanded, wider, and narrower. This
351
+ ## property is not currently implemented.
352
+ ##
353
+ ## The font.size property is the default font size for text, given in points.
354
+ ## 10 pt is the standard value.
355
+ ##
356
+ ## Note that font.size controls default text sizes. To configure
357
+ ## special text sizes tick labels, axes, labels, title, etc., see the rc
358
+ ## settings for axes and ticks. Special text sizes can be defined
359
+ ## relative to font.size, using the following values: xx-small, x-small,
360
+ ## small, medium, large, x-large, xx-large, larger, or smaller
361
+
362
+ #font.family: sans-serif
363
+ #font.style: normal
364
+ #font.variant: normal
365
+ #font.weight: normal
366
+ #font.stretch: normal
367
+ #font.size: 10.0
368
+
369
+ #font.serif: DejaVu Serif, Bitstream Vera Serif, Computer Modern Roman, New Century Schoolbook, Century Schoolbook L, Utopia, ITC Bookman, Bookman, Nimbus Roman No9 L, Times New Roman, Times, Palatino, Charter, serif
370
+ #font.sans-serif: DejaVu Sans, Bitstream Vera Sans, Computer Modern Sans Serif, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif
371
+ #font.cursive: Apple Chancery, Textile, Zapf Chancery, Sand, Script MT, Felipa, Comic Neue, Comic Sans MS, cursive
372
+ #font.fantasy: Chicago, Charcoal, Impact, Western, Humor Sans, xkcd, fantasy
373
+ #font.monospace: DejaVu Sans Mono, Bitstream Vera Sans Mono, Computer Modern Typewriter, Andale Mono, Nimbus Mono L, Courier New, Courier, Fixed, Terminal, monospace
374
+
375
+
376
+ ## ***************************************************************************
377
+ ## * TEXT *
378
+ ## ***************************************************************************
379
+ ## The text properties used by `text.Text`.
380
+ ## See https://matplotlib.org/api/artist_api.html#module-matplotlib.text
381
+ ## for more information on text properties
382
+ #text.color: black
383
+
384
+ ## FreeType hinting flag ("foo" corresponds to FT_LOAD_FOO); may be one of the
385
+ ## following (Proprietary Matplotlib-specific synonyms are given in parentheses,
386
+ ## but their use is discouraged):
387
+ ## - default: Use the font's native hinter if possible, else FreeType's auto-hinter.
388
+ ## ("either" is a synonym).
389
+ ## - no_autohint: Use the font's native hinter if possible, else don't hint.
390
+ ## ("native" is a synonym.)
391
+ ## - force_autohint: Use FreeType's auto-hinter. ("auto" is a synonym.)
392
+ ## - no_hinting: Disable hinting. ("none" is a synonym.)
393
+ #text.hinting: force_autohint
394
+
395
+ #text.hinting_factor: 8 # Specifies the amount of softness for hinting in the
396
+ # horizontal direction. A value of 1 will hint to full
397
+ # pixels. A value of 2 will hint to half pixels etc.
398
+ #text.kerning_factor: 0 # Specifies the scaling factor for kerning values. This
399
+ # is provided solely to allow old test images to remain
400
+ # unchanged. Set to 6 to obtain previous behavior.
401
+ # Values other than 0 or 6 have no defined meaning.
402
+ #text.antialiased: True # If True (default), the text will be antialiased.
403
+ # This only affects raster outputs.
404
+
405
+
406
+ ## ***************************************************************************
407
+ ## * LaTeX *
408
+ ## ***************************************************************************
409
+ ## For more information on LaTeX properties, see
410
+ ## https://matplotlib.org/tutorials/text/usetex.html
411
+ #text.usetex: False # use latex for all text handling. The following fonts
412
+ # are supported through the usual rc parameter settings:
413
+ # new century schoolbook, bookman, times, palatino,
414
+ # zapf chancery, charter, serif, sans-serif, helvetica,
415
+ # avant garde, courier, monospace, computer modern roman,
416
+ # computer modern sans serif, computer modern typewriter
417
+ #text.latex.preamble: # IMPROPER USE OF THIS FEATURE WILL LEAD TO LATEX FAILURES
418
+ # AND IS THEREFORE UNSUPPORTED. PLEASE DO NOT ASK FOR HELP
419
+ # IF THIS FEATURE DOES NOT DO WHAT YOU EXPECT IT TO.
420
+ # text.latex.preamble is a single line of LaTeX code that
421
+ # will be passed on to the LaTeX system. It may contain
422
+ # any code that is valid for the LaTeX "preamble", i.e.
423
+ # between the "\documentclass" and "\begin{document}"
424
+ # statements.
425
+ # Note that it has to be put on a single line, which may
426
+ # become quite long.
427
+ # The following packages are always loaded with usetex,
428
+ # so beware of package collisions:
429
+ # geometry, inputenc, type1cm.
430
+ # PostScript (PSNFSS) font packages may also be
431
+ # loaded, depending on your font settings.
432
+
433
+ ## The following settings allow you to select the fonts in math mode.
434
+ #mathtext.fontset: dejavusans # Should be 'dejavusans' (default),
435
+ # 'dejavuserif', 'cm' (Computer Modern), 'stix',
436
+ # 'stixsans' or 'custom' (unsupported, may go
437
+ # away in the future)
438
+ ## "mathtext.fontset: custom" is defined by the mathtext.bf, .cal, .it, ...
439
+ ## settings which map a TeX font name to a fontconfig font pattern. (These
440
+ ## settings are not used for other font sets.)
441
+ #mathtext.bf: sans:bold
442
+ #mathtext.cal: cursive
443
+ #mathtext.it: sans:italic
444
+ #mathtext.rm: sans
445
+ #mathtext.sf: sans
446
+ #mathtext.tt: monospace
447
+ #mathtext.fallback: cm # Select fallback font from ['cm' (Computer Modern), 'stix'
448
+ # 'stixsans'] when a symbol can not be found in one of the
449
+ # custom math fonts. Select 'None' to not perform fallback
450
+ # and replace the missing character by a dummy symbol.
451
+ #mathtext.default: it # The default font to use for math.
452
+ # Can be any of the LaTeX font names, including
453
+ # the special name "regular" for the same font
454
+ # used in regular text.
455
+
456
+
457
+ ## ***************************************************************************
458
+ ## * AXES *
459
+ ## ***************************************************************************
460
+ ## Following are default face and edge colors, default tick sizes,
461
+ ## default font sizes for tick labels, and so on. See
462
+ ## https://matplotlib.org/api/axes_api.html#module-matplotlib.axes
463
+ #axes.facecolor: white # axes background color
464
+ #axes.edgecolor: black # axes edge color
465
+ #axes.linewidth: 0.8 # edge line width
466
+ #axes.grid: False # display grid or not
467
+ #axes.grid.axis: both # which axis the grid should apply to
468
+ #axes.grid.which: major # grid lines at {major, minor, both} ticks
469
+ #axes.titlelocation: center # alignment of the title: {left, right, center}
470
+ #axes.titlesize: large # font size of the axes title
471
+ #axes.titleweight: normal # font weight of title
472
+ #axes.titlecolor: auto # color of the axes title, auto falls back to
473
+ # text.color as default value
474
+ #axes.titley: None # position title (axes relative units). None implies auto
475
+ #axes.titlepad: 6.0 # pad between axes and title in points
476
+ #axes.labelsize: medium # font size of the x and y labels
477
+ #axes.labelpad: 4.0 # space between label and axis
478
+ #axes.labelweight: normal # weight of the x and y labels
479
+ #axes.labelcolor: black
480
+ #axes.axisbelow: line # draw axis gridlines and ticks:
481
+ # - below patches (True)
482
+ # - above patches but below lines ('line')
483
+ # - above all (False)
484
+
485
+ #axes.formatter.limits: -5, 6 # use scientific notation if log10
486
+ # of the axis range is smaller than the
487
+ # first or larger than the second
488
+ #axes.formatter.use_locale: False # When True, format tick labels
489
+ # according to the user's locale.
490
+ # For example, use ',' as a decimal
491
+ # separator in the fr_FR locale.
492
+ #axes.formatter.use_mathtext: False # When True, use mathtext for scientific
493
+ # notation.
494
+ #axes.formatter.min_exponent: 0 # minimum exponent to format in scientific notation
495
+ #axes.formatter.useoffset: True # If True, the tick label formatter
496
+ # will default to labeling ticks relative
497
+ # to an offset when the data range is
498
+ # small compared to the minimum absolute
499
+ # value of the data.
500
+ #axes.formatter.offset_threshold: 4 # When useoffset is True, the offset
501
+ # will be used when it can remove
502
+ # at least this number of significant
503
+ # digits from tick labels.
504
+
505
+ #axes.spines.left: True # display axis spines
506
+ #axes.spines.bottom: True
507
+ #axes.spines.top: True
508
+ #axes.spines.right: True
509
+
510
+ #axes.unicode_minus: True # use Unicode for the minus symbol rather than hyphen. See
511
+ # https://en.wikipedia.org/wiki/Plus_and_minus_signs#Character_codes
512
+ #axes.prop_cycle: cycler('color', ['1f77b4', 'ff7f0e', '2ca02c', 'd62728', '9467bd', '8c564b', 'e377c2', '7f7f7f', 'bcbd22', '17becf'])
513
+ # color cycle for plot lines as list of string color specs:
514
+ # single letter, long name, or web-style hex
515
+ # As opposed to all other parameters in this file, the color
516
+ # values must be enclosed in quotes for this parameter,
517
+ # e.g. '1f77b4', instead of 1f77b4.
518
+ # See also https://matplotlib.org/tutorials/intermediate/color_cycle.html
519
+ # for more details on prop_cycle usage.
520
+ #axes.xmargin: .05 # x margin. See `axes.Axes.margins`
521
+ #axes.ymargin: .05 # y margin. See `axes.Axes.margins`
522
+ #axes.zmargin: .05 # z margin. See `axes.Axes.margins`
523
+ #axes.autolimit_mode: data # If "data", use axes.xmargin and axes.ymargin as is.
524
+ # If "round_numbers", after application of margins, axis
525
+ # limits are further expanded to the nearest "round" number.
526
+ #polaraxes.grid: True # display grid on polar axes
527
+ #axes3d.grid: True # display grid on 3D axes
528
+
529
+
530
+ ## ***************************************************************************
531
+ ## * AXIS *
532
+ ## ***************************************************************************
533
+ #xaxis.labellocation: center # alignment of the xaxis label: {left, right, center}
534
+ #yaxis.labellocation: center # alignment of the yaxis label: {bottom, top, center}
535
+
536
+
537
+ ## ***************************************************************************
538
+ ## * DATES *
539
+ ## ***************************************************************************
540
+ ## These control the default format strings used in AutoDateFormatter.
541
+ ## Any valid format datetime format string can be used (see the python
542
+ ## `datetime` for details). For example, by using:
543
+ ## - '%%x' will use the locale date representation
544
+ ## - '%%X' will use the locale time representation
545
+ ## - '%%c' will use the full locale datetime representation
546
+ ## These values map to the scales:
547
+ ## {'year': 365, 'month': 30, 'day': 1, 'hour': 1/24, 'minute': 1 / (24 * 60)}
548
+
549
+ #date.autoformatter.year: %Y
550
+ #date.autoformatter.month: %Y-%m
551
+ #date.autoformatter.day: %Y-%m-%d
552
+ #date.autoformatter.hour: %m-%d %H
553
+ #date.autoformatter.minute: %d %H:%M
554
+ #date.autoformatter.second: %H:%M:%S
555
+ #date.autoformatter.microsecond: %M:%S.%f
556
+ ## The reference date for Matplotlib's internal date representation
557
+ ## See https://matplotlib.org/examples/ticks_and_spines/date_precision_and_epochs.py
558
+ #date.epoch: 1970-01-01T00:00:00
559
+ ## 'auto', 'concise':
560
+ #date.converter: auto
561
+ ## For auto converter whether to use interval_multiples:
562
+ #date.interval_multiples: True
563
+
564
+ ## ***************************************************************************
565
+ ## * TICKS *
566
+ ## ***************************************************************************
567
+ ## See https://matplotlib.org/api/axis_api.html#matplotlib.axis.Tick
568
+ #xtick.top: False # draw ticks on the top side
569
+ #xtick.bottom: True # draw ticks on the bottom side
570
+ #xtick.labeltop: False # draw label on the top
571
+ #xtick.labelbottom: True # draw label on the bottom
572
+ #xtick.major.size: 3.5 # major tick size in points
573
+ #xtick.minor.size: 2 # minor tick size in points
574
+ #xtick.major.width: 0.8 # major tick width in points
575
+ #xtick.minor.width: 0.6 # minor tick width in points
576
+ #xtick.major.pad: 3.5 # distance to major tick label in points
577
+ #xtick.minor.pad: 3.4 # distance to the minor tick label in points
578
+ #xtick.color: black # color of the ticks
579
+ #xtick.labelcolor: inherit # color of the tick labels or inherit from xtick.color
580
+ #xtick.labelsize: medium # font size of the tick labels
581
+ #xtick.direction: out # direction: {in, out, inout}
582
+ #xtick.minor.visible: False # visibility of minor ticks on x-axis
583
+ #xtick.major.top: True # draw x axis top major ticks
584
+ #xtick.major.bottom: True # draw x axis bottom major ticks
585
+ #xtick.minor.top: True # draw x axis top minor ticks
586
+ #xtick.minor.bottom: True # draw x axis bottom minor ticks
587
+ #xtick.alignment: center # alignment of xticks
588
+
589
+ #ytick.left: True # draw ticks on the left side
590
+ #ytick.right: False # draw ticks on the right side
591
+ #ytick.labelleft: True # draw tick labels on the left side
592
+ #ytick.labelright: False # draw tick labels on the right side
593
+ #ytick.major.size: 3.5 # major tick size in points
594
+ #ytick.minor.size: 2 # minor tick size in points
595
+ #ytick.major.width: 0.8 # major tick width in points
596
+ #ytick.minor.width: 0.6 # minor tick width in points
597
+ #ytick.major.pad: 3.5 # distance to major tick label in points
598
+ #ytick.minor.pad: 3.4 # distance to the minor tick label in points
599
+ #ytick.color: black # color of the ticks
600
+ #ytick.labelcolor: inherit # color of the tick labels or inherit from ytick.color
601
+ #ytick.labelsize: medium # font size of the tick labels
602
+ #ytick.direction: out # direction: {in, out, inout}
603
+ #ytick.minor.visible: False # visibility of minor ticks on y-axis
604
+ #ytick.major.left: True # draw y axis left major ticks
605
+ #ytick.major.right: True # draw y axis right major ticks
606
+ #ytick.minor.left: True # draw y axis left minor ticks
607
+ #ytick.minor.right: True # draw y axis right minor ticks
608
+ #ytick.alignment: center_baseline # alignment of yticks
609
+
610
+
611
+ ## ***************************************************************************
612
+ ## * GRIDS *
613
+ ## ***************************************************************************
614
+ #grid.color: b0b0b0 # grid color
615
+ #grid.linestyle: - # solid
616
+ #grid.linewidth: 0.8 # in points
617
+ #grid.alpha: 1.0 # transparency, between 0.0 and 1.0
618
+
619
+
620
+ ## ***************************************************************************
621
+ ## * LEGEND *
622
+ ## ***************************************************************************
623
+ #legend.loc: best
624
+ #legend.frameon: True # if True, draw the legend on a background patch
625
+ #legend.framealpha: 0.8 # legend patch transparency
626
+ #legend.facecolor: inherit # inherit from axes.facecolor; or color spec
627
+ #legend.edgecolor: 0.8 # background patch boundary color
628
+ #legend.fancybox: True # if True, use a rounded box for the
629
+ # legend background, else a rectangle
630
+ #legend.shadow: False # if True, give background a shadow effect
631
+ #legend.numpoints: 1 # the number of marker points in the legend line
632
+ #legend.scatterpoints: 1 # number of scatter points
633
+ #legend.markerscale: 1.0 # the relative size of legend markers vs. original
634
+ #legend.fontsize: medium
635
+ #legend.labelcolor: None
636
+ #legend.title_fontsize: None # None sets to the same as the default axes.
637
+
638
+ ## Dimensions as fraction of font size:
639
+ #legend.borderpad: 0.4 # border whitespace
640
+ #legend.labelspacing: 0.5 # the vertical space between the legend entries
641
+ #legend.handlelength: 2.0 # the length of the legend lines
642
+ #legend.handleheight: 0.7 # the height of the legend handle
643
+ #legend.handletextpad: 0.8 # the space between the legend line and legend text
644
+ #legend.borderaxespad: 0.5 # the border between the axes and legend edge
645
+ #legend.columnspacing: 2.0 # column separation
646
+
647
+
648
+ ## ***************************************************************************
649
+ ## * FIGURE *
650
+ ## ***************************************************************************
651
+ ## See https://matplotlib.org/api/figure_api.html#matplotlib.figure.Figure
652
+ #figure.titlesize: large # size of the figure title (``Figure.suptitle()``)
653
+ #figure.titleweight: normal # weight of the figure title
654
+ #figure.figsize: 6.4, 4.8 # figure size in inches
655
+ #figure.dpi: 100 # figure dots per inch
656
+ #figure.facecolor: white # figure face color
657
+ #figure.edgecolor: white # figure edge color
658
+ #figure.frameon: True # enable figure frame
659
+ #figure.max_open_warning: 20 # The maximum number of figures to open through
660
+ # the pyplot interface before emitting a warning.
661
+ # If less than one this feature is disabled.
662
+ #figure.raise_window : True # Raise the GUI window to front when show() is called.
663
+
664
+ ## The figure subplot parameters. All dimensions are a fraction of the figure width and height.
665
+ #figure.subplot.left: 0.125 # the left side of the subplots of the figure
666
+ #figure.subplot.right: 0.9 # the right side of the subplots of the figure
667
+ #figure.subplot.bottom: 0.11 # the bottom of the subplots of the figure
668
+ #figure.subplot.top: 0.88 # the top of the subplots of the figure
669
+ #figure.subplot.wspace: 0.2 # the amount of width reserved for space between subplots,
670
+ # expressed as a fraction of the average axis width
671
+ #figure.subplot.hspace: 0.2 # the amount of height reserved for space between subplots,
672
+ # expressed as a fraction of the average axis height
673
+
674
+ ## Figure layout
675
+ #figure.autolayout: False # When True, automatically adjust subplot
676
+ # parameters to make the plot fit the figure
677
+ # using `tight_layout`
678
+ #figure.constrained_layout.use: False # When True, automatically make plot
679
+ # elements fit on the figure. (Not
680
+ # compatible with `autolayout`, above).
681
+ #figure.constrained_layout.h_pad: 0.04167 # Padding around axes objects. Float representing
682
+ #figure.constrained_layout.w_pad: 0.04167 # inches. Default is 3/72 inches (3 points)
683
+ #figure.constrained_layout.hspace: 0.02 # Space between subplot groups. Float representing
684
+ #figure.constrained_layout.wspace: 0.02 # a fraction of the subplot widths being separated.
685
+
686
+
687
+ ## ***************************************************************************
688
+ ## * IMAGES *
689
+ ## ***************************************************************************
690
+ #image.aspect: equal # {equal, auto} or a number
691
+ #image.interpolation: antialiased # see help(imshow) for options
692
+ #image.cmap: viridis # A colormap name, gray etc...
693
+ #image.lut: 256 # the size of the colormap lookup table
694
+ #image.origin: upper # {lower, upper}
695
+ #image.resample: True
696
+ #image.composite_image: True # When True, all the images on a set of axes are
697
+ # combined into a single composite image before
698
+ # saving a figure as a vector graphics file,
699
+ # such as a PDF.
700
+
701
+
702
+ ## ***************************************************************************
703
+ ## * CONTOUR PLOTS *
704
+ ## ***************************************************************************
705
+ #contour.negative_linestyle: dashed # string or on-off ink sequence
706
+ #contour.corner_mask: True # {True, False, legacy}
707
+ #contour.linewidth: None # {float, None} Size of the contour line
708
+ # widths. If set to None, it falls back to
709
+ # `line.linewidth`.
710
+
711
+
712
+ ## ***************************************************************************
713
+ ## * ERRORBAR PLOTS *
714
+ ## ***************************************************************************
715
+ #errorbar.capsize: 0 # length of end cap on error bars in pixels
716
+
717
+
718
+ ## ***************************************************************************
719
+ ## * HISTOGRAM PLOTS *
720
+ ## ***************************************************************************
721
+ #hist.bins: 10 # The default number of histogram bins or 'auto'.
722
+
723
+
724
+ ## ***************************************************************************
725
+ ## * SCATTER PLOTS *
726
+ ## ***************************************************************************
727
+ #scatter.marker: o # The default marker type for scatter plots.
728
+ #scatter.edgecolors: face # The default edge colors for scatter plots.
729
+
730
+
731
+ ## ***************************************************************************
732
+ ## * AGG RENDERING *
733
+ ## ***************************************************************************
734
+ ## Warning: experimental, 2008/10/10
735
+ #agg.path.chunksize: 0 # 0 to disable; values in the range
736
+ # 10000 to 100000 can improve speed slightly
737
+ # and prevent an Agg rendering failure
738
+ # when plotting very large data sets,
739
+ # especially if they are very gappy.
740
+ # It may cause minor artifacts, though.
741
+ # A value of 20000 is probably a good
742
+ # starting point.
743
+
744
+
745
+ ## ***************************************************************************
746
+ ## * PATHS *
747
+ ## ***************************************************************************
748
+ #path.simplify: True # When True, simplify paths by removing "invisible"
749
+ # points to reduce file size and increase rendering
750
+ # speed
751
+ #path.simplify_threshold: 0.111111111111 # The threshold of similarity below
752
+ # which vertices will be removed in
753
+ # the simplification process.
754
+ #path.snap: True # When True, rectilinear axis-aligned paths will be snapped
755
+ # to the nearest pixel when certain criteria are met.
756
+ # When False, paths will never be snapped.
757
+ #path.sketch: None # May be None, or a 3-tuple of the form:
758
+ # (scale, length, randomness).
759
+ # - *scale* is the amplitude of the wiggle
760
+ # perpendicular to the line (in pixels).
761
+ # - *length* is the length of the wiggle along the
762
+ # line (in pixels).
763
+ # - *randomness* is the factor by which the length is
764
+ # randomly scaled.
765
+ #path.effects:
766
+
767
+
768
+ ## ***************************************************************************
769
+ ## * SAVING FIGURES *
770
+ ## ***************************************************************************
771
+ ## The default savefig parameters can be different from the display parameters
772
+ ## e.g., you may want a higher resolution, or to make the figure
773
+ ## background white
774
+ #savefig.dpi: figure # figure dots per inch or 'figure'
775
+ #savefig.facecolor: auto # figure face color when saving
776
+ #savefig.edgecolor: auto # figure edge color when saving
777
+ #savefig.format: png # {png, ps, pdf, svg}
778
+ #savefig.bbox: standard # {tight, standard}
779
+ # 'tight' is incompatible with pipe-based animation
780
+ # backends (e.g. 'ffmpeg') but will work with those
781
+ # based on temporary files (e.g. 'ffmpeg_file')
782
+ #savefig.pad_inches: 0.1 # Padding to be used when bbox is set to 'tight'
783
+ #savefig.directory: ~ # default directory in savefig dialog box,
784
+ # leave empty to always use current working directory
785
+ #savefig.transparent: False # setting that controls whether figures are saved with a
786
+ # transparent background by default
787
+ #savefig.orientation: portrait # Orientation of saved figure
788
+
789
+ ### tk backend params
790
+ #tk.window_focus: False # Maintain shell focus for TkAgg
791
+
792
+ ### ps backend params
793
+ #ps.papersize: letter # {auto, letter, legal, ledger, A0-A10, B0-B10}
794
+ #ps.useafm: False # use of AFM fonts, results in small files
795
+ #ps.usedistiller: False # {ghostscript, xpdf, None}
796
+ # Experimental: may produce smaller files.
797
+ # xpdf intended for production of publication quality files,
798
+ # but requires ghostscript, xpdf and ps2eps
799
+ #ps.distiller.res: 6000 # dpi
800
+ #ps.fonttype: 3 # Output Type 3 (Type3) or Type 42 (TrueType)
801
+
802
+ ### PDF backend params
803
+ #pdf.compression: 6 # integer from 0 to 9
804
+ # 0 disables compression (good for debugging)
805
+ #pdf.fonttype: 3 # Output Type 3 (Type3) or Type 42 (TrueType)
806
+ #pdf.use14corefonts: False
807
+ #pdf.inheritcolor: False
808
+
809
+ ### SVG backend params
810
+ #svg.image_inline: True # Write raster image data directly into the SVG file
811
+ #svg.fonttype: path # How to handle SVG fonts:
812
+ # path: Embed characters as paths -- supported
813
+ # by most SVG renderers
814
+ # None: Assume fonts are installed on the
815
+ # machine where the SVG will be viewed.
816
+ #svg.hashsalt: None # If not None, use this string as hash salt instead of uuid4
817
+
818
+ ### pgf parameter
819
+ ## See https://matplotlib.org/tutorials/text/pgf.html for more information.
820
+ #pgf.rcfonts: True
821
+ #pgf.preamble: # See text.latex.preamble for documentation
822
+ #pgf.texsystem: xelatex
823
+
824
+ ### docstring params
825
+ #docstring.hardcopy: False # set this when you want to generate hardcopy docstring
826
+
827
+
828
+ ## ***************************************************************************
829
+ ## * INTERACTIVE KEYMAPS *
830
+ ## ***************************************************************************
831
+ ## Event keys to interact with figures/plots via keyboard.
832
+ ## See https://matplotlib.org/users/navigation_toolbar.html for more details on
833
+ ## interactive navigation. Customize these settings according to your needs.
834
+ ## Leave the field(s) empty if you don't need a key-map. (i.e., fullscreen : '')
835
+ #keymap.fullscreen: f, ctrl+f # toggling
836
+ #keymap.home: h, r, home # home or reset mnemonic
837
+ #keymap.back: left, c, backspace, MouseButton.BACK # forward / backward keys
838
+ #keymap.forward: right, v, MouseButton.FORWARD # for quick navigation
839
+ #keymap.pan: p # pan mnemonic
840
+ #keymap.zoom: o # zoom mnemonic
841
+ #keymap.save: s, ctrl+s # saving current figure
842
+ #keymap.help: f1 # display help about active tools
843
+ #keymap.quit: ctrl+w, cmd+w, q # close the current figure
844
+ #keymap.quit_all: # close all figures
845
+ #keymap.grid: g # switching on/off major grids in current axes
846
+ #keymap.grid_minor: G # switching on/off minor grids in current axes
847
+ #keymap.yscale: l # toggle scaling of y-axes ('log'/'linear')
848
+ #keymap.xscale: k, L # toggle scaling of x-axes ('log'/'linear')
849
+ #keymap.copy: ctrl+c, cmd+c # copy figure to clipboard
850
+
851
+
852
+ ## ***************************************************************************
853
+ ## * ANIMATION *
854
+ ## ***************************************************************************
855
+ #animation.html: none # How to display the animation as HTML in
856
+ # the IPython notebook:
857
+ # - 'html5' uses HTML5 video tag
858
+ # - 'jshtml' creates a JavaScript animation
859
+ #animation.writer: ffmpeg # MovieWriter 'backend' to use
860
+ #animation.codec: h264 # Codec to use for writing movie
861
+ #animation.bitrate: -1 # Controls size/quality trade-off for movie.
862
+ # -1 implies let utility auto-determine
863
+ #animation.frame_format: png # Controls frame format used by temp files
864
+ #animation.ffmpeg_path: ffmpeg # Path to ffmpeg binary. Without full path
865
+ # $PATH is searched
866
+ #animation.ffmpeg_args: # Additional arguments to pass to ffmpeg
867
+ #animation.convert_path: convert # Path to ImageMagick's convert binary.
868
+ # On Windows use the full path since convert
869
+ # is also the name of a system tool.
870
+ #animation.convert_args: # Additional arguments to pass to convert
871
+ #animation.embed_limit: 20.0 # Limit, in MB, of size of base64 encoded
872
+ # animation in HTML (i.e. IPython notebook)