matplotlibrc 39 KB

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