matplotlibrc 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747
  1. #### MATPLOTLIBRC FORMAT
  2. ## This is a sample matplotlib configuration file - you can find a copy
  3. ## of it on your system in site-packages/matplotlib/mpl-data/matplotlibrc
  4. ## (which related to your Python installation location).
  5. ##
  6. ## If you edit it there, please note that it will be overwritten in your
  7. ## next install. If you want to keep a permanent local copy that will not
  8. ## be overwritten, place it in one of the following locations:
  9. ## unix/linux:
  10. ## $HOME/.config/matplotlib/matplotlibrc OR
  11. ## $XDG_CONFIG_HOME/matplotlib/matplotlibrc (if $XDG_CONFIG_HOME is set)
  12. ## other platforms:
  13. ## $HOME/.matplotlib/matplotlibrc
  14. ##
  15. ## See https://matplotlib.org/users/customizing.html#the-matplotlibrc-file
  16. ## for more details on the paths which are checked for the configuration file.
  17. ##
  18. ## This file is best viewed in a editor which supports python mode syntax
  19. ## highlighting. Blank lines, or lines starting with a comment symbol, are
  20. ## ignored, as are trailing comments. Other lines must have the format:
  21. ## key : val ## optional comment
  22. ##
  23. ## Formatting and style conventions for this file:
  24. ## - at least one whitesapce AROUND `:` to seperate key and val
  25. ## * prefer one whitesapce except for block colon alignment
  26. ## - at least two whitesapces BEFORE `##` to seperate the key-val pair and
  27. ## the trailing comments
  28. ## * prefer two whitesapces except for block `##` alignment
  29. ## - at least one whitesapce AFTER `##` to seperate the `##` marker and
  30. ## the comment text
  31. ## * prefer one whitesapce except for indentation (listing, etc.), in
  32. ## which case, four more whitespaces are preferred
  33. ##
  34. ## Colors: for the color values below, you can either use
  35. ## - a matplotlib color string, such as r, k, or b
  36. ## - an rgb tuple, such as (1.0, 0.5, 0.0)
  37. ## - a hex string, such as ff00ff
  38. ## - a scalar grayscale intensity such as 0.75
  39. ## - a legal html color name, e.g., red, blue, darkslategray
  40. ##
  41. ## Matplotlib configuration are currently divided into following parts:
  42. ## - BACKENDS
  43. ## - LINES
  44. ## - PATCHES
  45. ## - HATCHES
  46. ## - BOXPLOT
  47. ## - FONT
  48. ## - TEXT
  49. ## - LaTeX
  50. ## - AXES
  51. ## - DATES
  52. ## - TICKS
  53. ## - GRIDS
  54. ## - LEGEND
  55. ## - FIGURE
  56. ## - IMAGES
  57. ## - CONTOUR PLOTS
  58. ## - ERRORBAR PLOTS
  59. ## - HISTOGRAM PLOTS
  60. ## - SCATTER PLOTS
  61. ## - AGG RENDERING
  62. ## - PATHS
  63. ## - SAVING FIGURES
  64. ## - INTERACTIVE KEYMAPS
  65. ## - ANIMATION
  66. ##### CONFIGURATION BEGINS HERE
  67. ## ***************************************************************************
  68. ## * BACKENDS *
  69. ## ***************************************************************************
  70. ## The default backend. If you omit this parameter, the first working
  71. ## backend from the following list is used:
  72. ## MacOSX Qt5Agg Qt4Agg Gtk3Agg TkAgg WxAgg Agg
  73. ## Other choices include:
  74. ## Qt5Cairo Qt4Cairo GTK3Cairo TkCairo WxCairo Cairo Wx
  75. ## PS PDF SVG Template
  76. ## You can also deploy your own backend outside of matplotlib by referring to
  77. ## the module name (which must be in the PYTHONPATH) as 'module://my_backend'.
  78. #backend : Agg
  79. ## The port to use for the web server in the WebAgg backend.
  80. #webagg.port : 8988
  81. ## The address on which the WebAgg web server should be reachable
  82. #webagg.address : 127.0.0.1
  83. ## If webagg.port is unavailable, a number of other random ports will
  84. ## be tried until one that is available is found.
  85. #webagg.port_retries : 50
  86. ## When True, open the webbrowser to the plot that is shown
  87. #webagg.open_in_browser : True
  88. ## If you are running pyplot inside a GUI and your backend choice
  89. ## conflicts, we will automatically try to find a compatible one for
  90. ## you if backend_fallback is True
  91. #backend_fallback : True
  92. #interactive : False
  93. #toolbar : toolbar2 ## {None, toolbar2}
  94. #timezone : UTC ## a pytz timezone string, e.g., US/Central or Europe/Paris
  95. ## ***************************************************************************
  96. ## * LINES *
  97. ## ***************************************************************************
  98. ## See https://matplotlib.org/api/artist_api.html#module-matplotlib.lines
  99. ## for more information on line properties.
  100. #lines.linewidth : 1.5 ## line width in points
  101. #lines.linestyle : - ## solid line
  102. #lines.color : C0 ## has no affect on plot(); see axes.prop_cycle
  103. #lines.marker : None ## the default marker
  104. #lines.markerfacecolor : auto ## the default marker face color
  105. #lines.markeredgecolor : auto ## the default marker edge color
  106. #lines.markeredgewidth : 1.0 ## the line width around the marker symbol
  107. #lines.markersize : 6 ## marker size, in points
  108. #lines.dash_joinstyle : round ## {miter, round, bevel}
  109. #lines.dash_capstyle : butt ## {butt, round, projecting}
  110. #lines.solid_joinstyle : round ## {miter, round, bevel}
  111. #lines.solid_capstyle : projecting ## {butt, round, projecting}
  112. #lines.antialiased : True ## render lines in antialiased (no jaggies)
  113. ## The three standard dash patterns. These are scaled by the linewidth.
  114. #lines.dashed_pattern : 3.7, 1.6
  115. #lines.dashdot_pattern : 6.4, 1.6, 1, 1.6
  116. #lines.dotted_pattern : 1, 1.65
  117. #lines.scale_dashes : True
  118. #markers.fillstyle : full ## {full, left, right, bottom, top, none}
  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. ## See following links for more information on LaTex properties:
  242. ## https://matplotlib.org/tutorials/text/usetex.html
  243. ## https://scipy-cookbook.readthedocs.io/items/idx_matplotlib_typesetting.html
  244. #text.usetex : False ## use latex for all text handling. The following fonts
  245. ## are supported through the usual rc parameter settings:
  246. ## new century schoolbook, bookman, times, palatino,
  247. ## zapf chancery, charter, serif, sans-serif, helvetica,
  248. ## avant garde, courier, monospace, computer modern roman,
  249. ## computer modern sans serif, computer modern typewriter
  250. ## If another font is desired which can loaded using the
  251. ## LaTeX \usepackage command, please inquire at the
  252. ## matplotlib mailing list
  253. #text.latex.preamble : ## IMPROPER USE OF THIS FEATURE WILL LEAD TO LATEX FAILURES
  254. ## AND IS THEREFORE UNSUPPORTED. PLEASE DO NOT ASK FOR HELP
  255. ## IF THIS FEATURE DOES NOT DO WHAT YOU EXPECT IT TO.
  256. ## text.latex.preamble is a single line of LaTeX code that
  257. ## will be passed on to the LaTeX system. It may contain
  258. ## any code that is valid for the LaTeX "preamble", i.e.
  259. ## between the "\documentclass" and "\begin{document}"
  260. ## statements.
  261. ## Note that it has to be put on a single line, which may
  262. ## become quite long.
  263. ## The following packages are always loaded with usetex, so
  264. ## beware of package collisions: color, geometry, graphicx,
  265. ## type1cm, textcomp.
  266. ## Adobe Postscript (PSSNFS) font packages may also be
  267. ## loaded, depending on your font settings.
  268. #text.latex.preview : False
  269. #text.hinting : auto ## May be one of the following:
  270. ## - none: Perform no hinting
  271. ## - auto: Use FreeType's autohinter
  272. ## - native: Use the hinting information in the
  273. ## font file, if available, and if your
  274. ## FreeType library supports it
  275. ## - either: Use the native hinting information,
  276. ## or the autohinter if none is available.
  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. ## They map from a TeX font name to a fontconfig font pattern.
  288. ## These settings are only used if mathtext.fontset is 'custom'.
  289. ## Note that this "custom" mode is unsupported and may go away in the future.
  290. #mathtext.cal : cursive
  291. #mathtext.rm : sans
  292. #mathtext.tt : monospace
  293. #mathtext.it : sans:italic
  294. #mathtext.bf : sans:bold
  295. #mathtext.sf : sans
  296. #mathtext.fontset : dejavusans ## Should be 'dejavusans' (default),
  297. ## 'dejavuserif', 'cm' (Computer Modern), 'stix',
  298. ## 'stixsans' or 'custom'
  299. #mathtext.fallback_to_cm : True ## When True, use symbols from the Computer Modern
  300. ## fonts when a symbol can not be found in one of
  301. ## the custom math fonts.
  302. #mathtext.default : it ## The default font to use for math.
  303. ## Can be any of the LaTeX font names, including
  304. ## the special name "regular" for the same font
  305. ## used in regular text.
  306. ## ***************************************************************************
  307. ## * AXES *
  308. ## ***************************************************************************
  309. ## Following are default face and edge colors, default tick sizes,
  310. ## default fontsizes for ticklabels, and so on. See
  311. ## https://matplotlib.org/api/axes_api.html#module-matplotlib.axes
  312. #axes.facecolor : white ## axes background color
  313. #axes.edgecolor : black ## axes edge color
  314. #axes.linewidth : 0.8 ## edge linewidth
  315. #axes.grid : False ## display grid or not
  316. #axes.grid.axis : both ## which axis the grid should apply to
  317. #axes.grid.which : major ## gridlines at {major, minor, both} ticks
  318. #axes.titlelocation : center ## alignment of the title: {left, right, center}
  319. #axes.titlesize : large ## fontsize of the axes title
  320. #axes.titleweight : normal ## font weight of title
  321. #axes.titlecolor : auto ## color of the axes title, auto falls back to text.color
  322. ## as default value
  323. #axes.titlepad : 6.0 ## pad between axes and title in points
  324. #axes.labelsize : medium ## fontsize of the x any y labels
  325. #axes.labelpad : 4.0 ## space between label and axis
  326. #axes.labelweight : normal ## weight of the x and y labels
  327. #axes.labelcolor : black
  328. #axes.axisbelow : line ## draw axis gridlines and ticks:
  329. ## - below patches (True)
  330. ## - above patches but below lines ('line')
  331. ## - above all (False)
  332. #axes.formatter.limits : -5, 6 ## use scientific notation if log10
  333. ## of the axis range is smaller than the
  334. ## first or larger than the second
  335. #axes.formatter.use_locale : False ## When True, format tick labels
  336. ## according to the user's locale.
  337. ## For example, use ',' as a decimal
  338. ## separator in the fr_FR locale.
  339. #axes.formatter.use_mathtext : False ## When True, use mathtext for scientific
  340. ## notation.
  341. #axes.formatter.min_exponent : 0 ## minimum exponent to format in scientific notation
  342. #axes.formatter.useoffset : True ## If True, the tick label formatter
  343. ## will default to labeling ticks relative
  344. ## to an offset when the data range is
  345. ## small compared to the minimum absolute
  346. ## value of the data.
  347. #axes.formatter.offset_threshold : 4 ## When useoffset is True, the offset
  348. ## will be used when it can remove
  349. ## at least this number of significant
  350. ## digits from tick labels.
  351. #axes.spines.left : True ## display axis spines
  352. #axes.spines.bottom : True
  353. #axes.spines.top : True
  354. #axes.spines.right : True
  355. #axes.unicode_minus : True ## use Unicode for the minus symbol
  356. ## rather than hyphen. See
  357. ## https://en.wikipedia.org/wiki/Plus_and_minus_signs#Character_codes
  358. #axes.prop_cycle : cycler('color', ['1f77b4', 'ff7f0e', '2ca02c', 'd62728', '9467bd', '8c564b', 'e377c2', '7f7f7f', 'bcbd22', '17becf'])
  359. ## color cycle for plot lines as list of string colorspecs:
  360. ## single letter, long name, or web-style hex
  361. ## As opposed to all other paramters in this file, the color
  362. ## values must be enclosed in quotes for this parameter,
  363. # e.g. '1f77b4', instead of 1f77b4.
  364. ## See also https://matplotlib.org/tutorials/intermediate/color_cycle.html
  365. ## for more details on prop_cycle usage.
  366. #axes.autolimit_mode : data ## How to scale axes limits to the data. By using:
  367. ## - "data" to use data limits, plus some margin
  368. ## - "round_numbers" move to the nearest "round" number
  369. #axes.xmargin : .05 ## x margin. See `axes.Axes.margins`
  370. #axes.ymargin : .05 ## y margin. See `axes.Axes.margins`
  371. #polaraxes.grid : True ## display grid on polar axes
  372. #axes3d.grid : True ## display grid on 3d axes
  373. ## ***************************************************************************
  374. ## * DATES *
  375. ## ***************************************************************************
  376. ## These control the default format strings used in AutoDateFormatter.
  377. ## Any valid format datetime format string can be used (see the python
  378. ## `datetime` for details). For example, by using:
  379. ## - '%%x' will use the locale date representation
  380. ## - '%%X' will use the locale time representation
  381. ## - '%%c' will use the full locale datetime representation
  382. ## These values map to the scales:
  383. ## {'year': 365, 'month': 30, 'day': 1, 'hour': 1/24, 'minute': 1 / (24 * 60)}
  384. #date.autoformatter.year : %Y
  385. #date.autoformatter.month : %Y-%m
  386. #date.autoformatter.day : %Y-%m-%d
  387. #date.autoformatter.hour : %m-%d %H
  388. #date.autoformatter.minute : %d %H:%M
  389. #date.autoformatter.second : %H:%M:%S
  390. #date.autoformatter.microsecond : %M:%S.%f
  391. ## ***************************************************************************
  392. ## * TICKS *
  393. ## ***************************************************************************
  394. ## See https://matplotlib.org/api/axis_api.html#matplotlib.axis.Tick
  395. #xtick.top : False ## draw ticks on the top side
  396. #xtick.bottom : True ## draw ticks on the bottom side
  397. #xtick.labeltop : False ## draw label on the top
  398. #xtick.labelbottom : True ## draw label on the bottom
  399. #xtick.major.size : 3.5 ## major tick size in points
  400. #xtick.minor.size : 2 ## minor tick size in points
  401. #xtick.major.width : 0.8 ## major tick width in points
  402. #xtick.minor.width : 0.6 ## minor tick width in points
  403. #xtick.major.pad : 3.5 ## distance to major tick label in points
  404. #xtick.minor.pad : 3.4 ## distance to the minor tick label in points
  405. #xtick.color : black ## color of the tick labels
  406. #xtick.labelsize : medium ## fontsize of the tick labels
  407. #xtick.direction : out ## direction: {in, out, inout}
  408. #xtick.minor.visible : False ## visibility of minor ticks on x-axis
  409. #xtick.major.top : True ## draw x axis top major ticks
  410. #xtick.major.bottom : True ## draw x axis bottom major ticks
  411. #xtick.minor.top : True ## draw x axis top minor ticks
  412. #xtick.minor.bottom : True ## draw x axis bottom minor ticks
  413. #xtick.alignment : center ## alignment of xticks
  414. #ytick.left : True ## draw ticks on the left side
  415. #ytick.right : False ## draw ticks on the right side
  416. #ytick.labelleft : True ## draw tick labels on the left side
  417. #ytick.labelright : False ## draw tick labels on the right side
  418. #ytick.major.size : 3.5 ## major tick size in points
  419. #ytick.minor.size : 2 ## minor tick size in points
  420. #ytick.major.width : 0.8 ## major tick width in points
  421. #ytick.minor.width : 0.6 ## minor tick width in points
  422. #ytick.major.pad : 3.5 ## distance to major tick label in points
  423. #ytick.minor.pad : 3.4 ## distance to the minor tick label in points
  424. #ytick.color : black ## color of the tick labels
  425. #ytick.labelsize : medium ## fontsize of the tick labels
  426. #ytick.direction : out ## direction: {in, out, inout}
  427. #ytick.minor.visible : False ## visibility of minor ticks on y-axis
  428. #ytick.major.left : True ## draw y axis left major ticks
  429. #ytick.major.right : True ## draw y axis right major ticks
  430. #ytick.minor.left : True ## draw y axis left minor ticks
  431. #ytick.minor.right : True ## draw y axis right minor ticks
  432. #ytick.alignment : center_baseline ## alignment of yticks
  433. ## ***************************************************************************
  434. ## * GRIDS *
  435. ## ***************************************************************************
  436. #grid.color : b0b0b0 ## grid color
  437. #grid.linestyle : - ## solid
  438. #grid.linewidth : 0.8 ## in points
  439. #grid.alpha : 1.0 ## transparency, between 0.0 and 1.0
  440. ## ***************************************************************************
  441. ## * LEGEND *
  442. ## ***************************************************************************
  443. #legend.loc : best
  444. #legend.frameon : True ## if True, draw the legend on a background patch
  445. #legend.framealpha : 0.8 ## legend patch transparency
  446. #legend.facecolor : inherit ## inherit from axes.facecolor; or color spec
  447. #legend.edgecolor : 0.8 ## background patch boundary color
  448. #legend.fancybox : True ## if True, use a rounded box for the
  449. ## legend background, else a rectangle
  450. #legend.shadow : False ## if True, give background a shadow effect
  451. #legend.numpoints : 1 ## the number of marker points in the legend line
  452. #legend.scatterpoints : 1 ## number of scatter points
  453. #legend.markerscale : 1.0 ## the relative size of legend markers vs. original
  454. #legend.fontsize : medium
  455. #legend.title_fontsize : None ## None sets to the same as the default axes.
  456. ## Dimensions as fraction of fontsize:
  457. #legend.borderpad : 0.4 ## border whitespace
  458. #legend.labelspacing : 0.5 ## the vertical space between the legend entries
  459. #legend.handlelength : 2.0 ## the length of the legend lines
  460. #legend.handleheight : 0.7 ## the height of the legend handle
  461. #legend.handletextpad : 0.8 ## the space between the legend line and legend text
  462. #legend.borderaxespad : 0.5 ## the border between the axes and legend edge
  463. #legend.columnspacing : 2.0 ## column separation
  464. ## ***************************************************************************
  465. ## * FIGURE *
  466. ## ***************************************************************************
  467. ## See https://matplotlib.org/api/figure_api.html#matplotlib.figure.Figure
  468. #figure.titlesize : large ## size of the figure title (``Figure.suptitle()``)
  469. #figure.titleweight : normal ## weight of the figure title
  470. #figure.figsize : 6.4, 4.8 ## figure size in inches
  471. #figure.dpi : 100 ## figure dots per inch
  472. #figure.facecolor : white ## figure facecolor
  473. #figure.edgecolor : white ## figure edgecolor
  474. #figure.frameon : True ## enable figure frame
  475. #figure.max_open_warning : 20 ## The maximum number of figures to open through
  476. ## the pyplot interface before emitting a warning.
  477. ## If less than one this feature is disabled.
  478. ## The figure subplot parameters. All dimensions are a fraction of the figure width and height.
  479. #figure.subplot.left : 0.125 ## the left side of the subplots of the figure
  480. #figure.subplot.right : 0.9 ## the right side of the subplots of the figure
  481. #figure.subplot.bottom : 0.11 ## the bottom of the subplots of the figure
  482. #figure.subplot.top : 0.88 ## the top of the subplots of the figure
  483. #figure.subplot.wspace : 0.2 ## the amount of width reserved for space between subplots,
  484. ## expressed as a fraction of the average axis width
  485. #figure.subplot.hspace : 0.2 ## the amount of height reserved for space between subplots,
  486. ## expressed as a fraction of the average axis height
  487. ## Figure layout
  488. #figure.autolayout : False ## When True, automatically adjust subplot
  489. ## parameters to make the plot fit the figure
  490. ## using `tight_layout`
  491. #figure.constrained_layout.use : False ## When True, automatically make plot
  492. ## elements fit on the figure. (Not
  493. ## compatible with `autolayout`, above).
  494. #figure.constrained_layout.h_pad : 0.04167 ## Padding around axes objects. Float representing
  495. #figure.constrained_layout.w_pad : 0.04167 ## inches. Default is 3./72. inches (3 pts)
  496. #figure.constrained_layout.hspace : 0.02 ## Space between subplot groups. Float representing
  497. #figure.constrained_layout.wspace : 0.02 ## a fraction of the subplot widths being separated.
  498. ## ***************************************************************************
  499. ## * IMAGES *
  500. ## ***************************************************************************
  501. #image.aspect : equal ## {equal, auto} or a number
  502. #image.interpolation : antialiased ## see help(imshow) for options
  503. #image.cmap : viridis ## A colormap name, gray etc...
  504. #image.lut : 256 ## the size of the colormap lookup table
  505. #image.origin : upper ## {lower, upper}
  506. #image.resample : True
  507. #image.composite_image : True ## When True, all the images on a set of axes are
  508. ## combined into a single composite image before
  509. ## saving a figure as a vector graphics file,
  510. ## such as a PDF.
  511. ## ***************************************************************************
  512. ## * CONTOUR PLOTS *
  513. ## ***************************************************************************
  514. #contour.negative_linestyle : dashed ## string or on-off ink sequence
  515. #contour.corner_mask : True ## {True, False, legacy}
  516. ## ***************************************************************************
  517. ## * ERRORBAR PLOTS *
  518. ## ***************************************************************************
  519. #errorbar.capsize : 0 ## length of end cap on error bars in pixels
  520. ## ***************************************************************************
  521. ## * HISTOGRAM PLOTS *
  522. ## ***************************************************************************
  523. #hist.bins : 10 ## The default number of histogram bins or 'auto'.
  524. ## ***************************************************************************
  525. ## * SCATTER PLOTS *
  526. ## ***************************************************************************
  527. #scatter.marker : o ## The default marker type for scatter plots.
  528. #scatter.edgecolors : face ## The default edge colors for scatter plots.
  529. ## ***************************************************************************
  530. ## * AGG RENDERING *
  531. ## ***************************************************************************
  532. ## Warning: experimental, 2008/10/10
  533. #agg.path.chunksize : 0 ## 0 to disable; values in the range
  534. ## 10000 to 100000 can improve speed slightly
  535. ## and prevent an Agg rendering failure
  536. ## when plotting very large data sets,
  537. ## especially if they are very gappy.
  538. ## It may cause minor artifacts, though.
  539. ## A value of 20000 is probably a good
  540. ## starting point.
  541. ## ***************************************************************************
  542. ## * PATHS *
  543. ## ***************************************************************************
  544. #path.simplify : True ## When True, simplify paths by removing "invisible"
  545. ## points to reduce file size and increase rendering
  546. ## speed
  547. #path.simplify_threshold : 0.111111111111 ## The threshold of similarity below
  548. ## which vertices will be removed in
  549. ## the simplification process.
  550. #path.snap : True ## When True, rectilinear axis-aligned paths will be snapped
  551. ## to the nearest pixel when certain criteria are met.
  552. ## When False, paths will never be snapped.
  553. #path.sketch : None ## May be None, or a 3-tuple of the form:
  554. ## (scale, length, randomness).
  555. ## - *scale* is the amplitude of the wiggle
  556. ## perpendicular to the line (in pixels).
  557. ## - *length* is the length of the wiggle along the
  558. ## line (in pixels).
  559. ## - *randomness* is the factor by which the length is
  560. ## randomly scaled.
  561. #path.effects : [] ##
  562. ## ***************************************************************************
  563. ## * SAVING FIGURES *
  564. ## ***************************************************************************
  565. ## The default savefig params can be different from the display params
  566. ## e.g., you may want a higher resolution, or to make the figure
  567. ## background white
  568. #savefig.dpi : figure ## figure dots per inch or 'figure'
  569. #savefig.facecolor : white ## figure facecolor when saving
  570. #savefig.edgecolor : white ## figure edgecolor when saving
  571. #savefig.format : png ## {png, ps, pdf, svg}
  572. #savefig.bbox : standard ## {tight, standard}
  573. ## 'tight' is incompatible with pipe-based animation
  574. ## backends but will workd with temporary file based ones:
  575. ## e.g. setting animation.writer to ffmpeg will not work,
  576. ## use ffmpeg_file instead
  577. #savefig.pad_inches : 0.1 ## Padding to be used when bbox is set to 'tight'
  578. #savefig.jpeg_quality : 95 ## when a jpeg is saved, the default quality parameter.
  579. #savefig.directory : ~ ## default directory in savefig dialog box,
  580. ## leave empty to always use current working directory
  581. #savefig.transparent : False ## setting that controls whether figures are saved with a
  582. ## transparent background by default
  583. #savefig.orientation : portrait ## Orientation of saved figure
  584. ### tk backend params
  585. #tk.window_focus : False ## Maintain shell focus for TkAgg
  586. ### ps backend params
  587. #ps.papersize : letter ## {auto, letter, legal, ledger, A0-A10, B0-B10}
  588. #ps.useafm : False ## use of afm fonts, results in small files
  589. #ps.usedistiller : False ## {ghostscript, xpdf, None}
  590. ## Experimental: may produce smaller files.
  591. ## xpdf intended for production of publication quality files,
  592. ## but requires ghostscript, xpdf and ps2eps
  593. #ps.distiller.res : 6000 ## dpi
  594. #ps.fonttype : 3 ## Output Type 3 (Type3) or Type 42 (TrueType)
  595. ### PDF backend params
  596. #pdf.compression : 6 ## integer from 0 to 9
  597. ## 0 disables compression (good for debugging)
  598. #pdf.fonttype : 3 ## Output Type 3 (Type3) or Type 42 (TrueType)
  599. #pdf.use14corefonts : False
  600. #pdf.inheritcolor : False
  601. ### SVG backend params
  602. #svg.image_inline : True ## Write raster image data directly into the SVG file
  603. #svg.fonttype : path ## How to handle SVG fonts:
  604. ## path: Embed characters as paths -- supported
  605. ## by most SVG renderers
  606. ## None: Assume fonts are installed on the
  607. ## machine where the SVG will be viewed.
  608. #svg.hashsalt : None ## If not None, use this string as hash salt instead of uuid4
  609. ### pgf parameter
  610. ## See https://matplotlib.org/tutorials/text/pgf.html for more information.
  611. #pgf.rcfonts : True
  612. #pgf.preamble : ## See text.latex.preamble for documentation
  613. #pgf.texsystem : xelatex
  614. ### docstring params
  615. ##docstring.hardcopy = False ## set this when you want to generate hardcopy docstring
  616. ## ***************************************************************************
  617. ## * INTERACTIVE KEYMAPS *
  618. ## ***************************************************************************
  619. ## Event keys to interact with figures/plots via keyboard.
  620. ## See https://matplotlib.org/users/navigation_toolbar.html for more details on
  621. ## interactive navigation. Customize these settings according to your needs.
  622. ## Leave the field(s) empty if you don't need a key-map. (i.e., fullscreen : '')
  623. #keymap.fullscreen : f, ctrl+f ## toggling
  624. #keymap.home : h, r, home ## home or reset mnemonic
  625. #keymap.back : left, c, backspace, MouseButton.BACK ## forward / backward keys
  626. #keymap.forward : right, v, MouseButton.FORWARD ## for quick navigation
  627. #keymap.pan : p ## pan mnemonic
  628. #keymap.zoom : o ## zoom mnemonic
  629. #keymap.save : s, ctrl+s ## saving current figure
  630. #keymap.help : f1 ## display help about active tools
  631. #keymap.quit : ctrl+w, cmd+w, q ## close the current figure
  632. #keymap.quit_all : W, cmd+W, Q ## close all figures
  633. #keymap.grid : g ## switching on/off major grids in current axes
  634. #keymap.grid_minor : G ## switching on/off minor grids in current axes
  635. #keymap.yscale : l ## toggle scaling of y-axes ('log'/'linear')
  636. #keymap.xscale : k, L ## toggle scaling of x-axes ('log'/'linear')
  637. #keymap.all_axes : a ## enable all axes
  638. #keymap.copy : ctrl+c, cmd+c ## Copy figure to clipboard
  639. ## ***************************************************************************
  640. ## * ANIMATION *
  641. ## ***************************************************************************
  642. #animation.html : none ## How to display the animation as HTML in
  643. ## the IPython notebook:
  644. ## - 'html5' uses HTML5 video tag
  645. ## - 'jshtml' creates a Javascript animation
  646. #animation.writer : ffmpeg ## MovieWriter 'backend' to use
  647. #animation.codec : h264 ## Codec to use for writing movie
  648. #animation.bitrate : -1 ## Controls size/quality tradeoff for movie.
  649. ## -1 implies let utility auto-determine
  650. #animation.frame_format : png ## Controls frame format used by temp files
  651. #animation.html_args : ## Additional arguments to pass to html writer
  652. #animation.ffmpeg_path : ffmpeg ## Path to ffmpeg binary. Without full path
  653. ## $PATH is searched
  654. #animation.ffmpeg_args : ## Additional arguments to pass to ffmpeg
  655. #animation.avconv_path : avconv ## Path to avconv binary. Without full path
  656. ## $PATH is searched
  657. #animation.avconv_args : ## Additional arguments to pass to avconv
  658. #animation.convert_path : convert ## Path to ImageMagick's convert binary.
  659. ## On Windows use the full path since convert
  660. ## is also the name of a system tool.
  661. #animation.convert_args : ## Additional arguments to pass to convert
  662. #animation.embed_limit : 20.0 ## Limit, in MB, of size of base64 encoded
  663. ## animation in HTML (i.e. IPython notebook)
  664. #mpl_toolkits.legacy_colorbar: True