matplotlibrc 41 KB

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