matplotlibrc.template 32 KB

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