matplotlibrc 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  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 GTK3Agg GTK3Cairo MacOSX Qt4Agg Qt5Agg TkAgg
  30. ## WX WXAgg Agg Cairo PS PDF SVG Template.
  31. ## You can also deploy your own backend outside of matplotlib by
  32. ## referring to the module name (which must be in the PYTHONPATH) as
  33. ## 'module://my_backend'.
  34. ##
  35. ## If you omit this parameter, the backend will be determined by fallback.
  36. #backend : Agg
  37. ## Note that this can be overridden by the environment variable
  38. ## QT_API used by Enthought Tool Suite (ETS); valid values are
  39. ## "pyqt" and "pyside". The "pyqt" setting has the side effect of
  40. ## forcing the use of Version 2 API for QString and QVariant.
  41. ## The port to use for the web server in the WebAgg backend.
  42. #webagg.port : 8988
  43. ## The address on which the WebAgg web server should be reachable
  44. #webagg.address : 127.0.0.1
  45. ## If webagg.port is unavailable, a number of other random ports will
  46. ## be tried until one that is available is found.
  47. #webagg.port_retries : 50
  48. ## When True, open the webbrowser to the plot that is shown
  49. #webagg.open_in_browser : True
  50. ## if you are running pyplot inside a GUI and your backend choice
  51. ## conflicts, we will automatically try to find a compatible one for
  52. ## you if backend_fallback is True
  53. #backend_fallback: True
  54. #interactive : False
  55. #toolbar : toolbar2 ## None | toolbar2 ("classic" is deprecated)
  56. #timezone : UTC ## a pytz timezone string, e.g., US/Central or Europe/Paris
  57. ## Where your matplotlib data lives if you installed to a non-default
  58. ## location. This is where the matplotlib fonts, bitmaps, etc reside
  59. #datapath : /home/jdhunter/mpldata
  60. #### LINES
  61. ## See http://matplotlib.org/api/artist_api.html#module-matplotlib.lines for more
  62. ## information on line properties.
  63. lines.linewidth : 2 ## line width in points
  64. #lines.linestyle : - ## solid line
  65. #lines.color : C0 ## has no affect on plot(); see axes.prop_cycle
  66. #lines.marker : None ## the default marker
  67. # lines.markerfacecolor : auto ## the default markerfacecolor
  68. lines.markeredgecolor : white ## the default markeredgecolor
  69. lines.markeredgewidth : 1 ## the line width around the marker symbol
  70. lines.markersize : 7 ## 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 : black ## 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 : black
  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 : True
  101. #boxplot.showmeans : False
  102. #boxplot.showcaps : True
  103. #boxplot.showbox : True
  104. #boxplot.showfliers : True
  105. #boxplot.meanline : False
  106. boxplot.flierprops.color : C0
  107. boxplot.flierprops.marker : o
  108. boxplot.flierprops.markerfacecolor : auto
  109. boxplot.flierprops.markeredgecolor : white
  110. boxplot.flierprops.markersize : 7
  111. boxplot.flierprops.linestyle : none
  112. boxplot.flierprops.linewidth : 1.0
  113. boxplot.boxprops.color : 9ae1f9
  114. boxplot.boxprops.linewidth : 0
  115. boxplot.boxprops.linestyle : -
  116. boxplot.whiskerprops.color : C0
  117. boxplot.whiskerprops.linewidth : 1.0
  118. boxplot.whiskerprops.linestyle : -
  119. boxplot.capprops.color : C0
  120. boxplot.capprops.linewidth : 1.0
  121. boxplot.capprops.linestyle : -
  122. boxplot.medianprops.color : 9ae1f9
  123. boxplot.medianprops.linewidth : 1
  124. boxplot.medianprops.linestyle : -
  125. boxplot.meanprops.color : C1
  126. boxplot.meanprops.marker : ^
  127. boxplot.meanprops.markerfacecolor : C1
  128. boxplot.meanprops.markeredgecolor : C1
  129. boxplot.meanprops.markersize : 7
  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 : 500
  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 : 14.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 : black
  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.preamble : ## IMPROPER USE OF THIS FEATURE WILL LEAD TO LATEX FAILURES
  198. ## AND IS THEREFORE UNSUPPORTED. PLEASE DO NOT ASK FOR HELP
  199. ## IF THIS FEATURE DOES NOT DO WHAT YOU EXPECT IT TO.
  200. ## preamble is a comma separated list of LaTeX statements
  201. ## that are included in the LaTeX document preamble.
  202. ## An example:
  203. ## text.latex.preamble : \usepackage{bm},\usepackage{euler}
  204. ## The following packages are always loaded with usetex, so
  205. ## beware of package collisions: color, geometry, graphicx,
  206. ## type1cm, textcomp. Adobe Postscript (PSSNFS) font packages
  207. ## may also be loaded, depending on your font settings
  208. #text.latex.preview : False
  209. #text.hinting : auto ## May be one of the following:
  210. ## none: Perform no hinting
  211. ## auto: Use FreeType's autohinter
  212. ## native: Use the hinting information in the
  213. # font file, if available, and if your
  214. # FreeType library supports it
  215. ## either: Use the native hinting information,
  216. # or the autohinter if none is available.
  217. ## For backward compatibility, this value may also be
  218. ## True === 'auto' or False === 'none'.
  219. #text.hinting_factor : 8 ## Specifies the amount of softness for hinting in the
  220. ## horizontal direction. A value of 1 will hint to full
  221. ## pixels. A value of 2 will hint to half pixels etc.
  222. #text.antialiased : True ## If True (default), the text will be antialiased.
  223. ## This only affects the Agg backend.
  224. ## The following settings allow you to select the fonts in math mode.
  225. ## They map from a TeX font name to a fontconfig font pattern.
  226. ## These settings are only used if mathtext.fontset is 'custom'.
  227. ## Note that this "custom" mode is unsupported and may go away in the
  228. ## future.
  229. #mathtext.cal : cursive
  230. #mathtext.rm : sans
  231. #mathtext.tt : monospace
  232. #mathtext.it : sans:italic
  233. #mathtext.bf : sans:bold
  234. #mathtext.sf : sans
  235. #mathtext.fontset : dejavusans ## Should be 'dejavusans' (default),
  236. ## 'dejavuserif', 'cm' (Computer Modern), 'stix',
  237. ## 'stixsans' or 'custom'
  238. #mathtext.fallback_to_cm : True ## When True, use symbols from the Computer Modern
  239. ## fonts when a symbol can not be found in one of
  240. ## the custom math fonts.
  241. #mathtext.default : it ## The default font to use for math.
  242. ## Can be any of the LaTeX font names, including
  243. ## the special name "regular" for the same font
  244. ## used in regular text.
  245. #### AXES
  246. ## default face and edge color, default tick sizes,
  247. ## default fontsizes for ticklabels, and so on. See
  248. ## http://matplotlib.org/api/axes_api.html#module-matplotlib.axes
  249. #axes.facecolor : white ## axes background color
  250. axes.edgecolor : D0D0E0 ## axes edge color
  251. #axes.linewidth : 0.8 ## edge linewidth
  252. axes.grid : True ## display grid or not
  253. axes.grid.axis : both ## which axis the grid should apply to
  254. #axes.grid.which : major ## gridlines at major, minor or both ticks
  255. axes.titlesize : 18 ## fontsize of the axes title
  256. axes.titleweight : 650 ## font weight of title
  257. #axes.titlepad : 6.0 ## pad between axes and title in points
  258. axes.labelsize : 18 ## fontsize of the x any y labels
  259. axes.labelpad : 8.0 ## space between label and axis
  260. axes.labelweight : 500 ## weight of the x and y labels
  261. axes.labelcolor : black
  262. #axes.axisbelow : line ## draw axis gridlines and ticks below
  263. ## patches (True); above patches but below
  264. ## lines ('line'); or above all (False)
  265. #axes.formatter.limits : -7, 7 ## use scientific notation if log10
  266. ## of the axis range is smaller than the
  267. ## first or larger than the second
  268. #axes.formatter.use_locale : False ## When True, format tick labels
  269. ## according to the user's locale.
  270. ## For example, use ',' as a decimal
  271. ## separator in the fr_FR locale.
  272. #axes.formatter.use_mathtext : False ## When True, use mathtext for scientific
  273. ## notation.
  274. #axes.formatter.min_exponent: 0 ## minimum exponent to format in scientific notation
  275. #axes.formatter.useoffset : True ## If True, the tick label formatter
  276. ## will default to labeling ticks relative
  277. ## to an offset when the data range is
  278. ## small compared to the minimum absolute
  279. ## value of the data.
  280. #axes.formatter.offset_threshold : 4 ## When useoffset is True, the offset
  281. ## will be used when it can remove
  282. ## at least this number of significant
  283. ## digits from tick labels.
  284. axes.spines.left : False ## display axis spines
  285. axes.spines.bottom : False
  286. axes.spines.top : False
  287. axes.spines.right : False
  288. #axes.unicode_minus : True ## use unicode for the minus symbol
  289. ## rather than hyphen. See
  290. ## http://en.wikipedia.org/wiki/Plus_and_minus_signs#Character_codes
  291. axes.prop_cycle : cycler('color', ['00BEFF', 'D4CA3A', 'FF6DAE', '67E1B5', 'EBACFA', '9E9E9E', 'F1988E', '5DB15A', 'E28544', '52B8AA'])
  292. ## color cycle for plot lines as list of string
  293. ## colorspecs: single letter, long name, or web-style hex
  294. ## Note the use of string escapes here ('1f77b4', instead of 1f77b4)
  295. ## as opposed to the rest of this file.
  296. #axes.autolimit_mode : data ## How to scale axes limits to the data.
  297. ## Use "data" to use data limits, plus some margin
  298. ## Use "round_number" move to the nearest "round" number
  299. #axes.xmargin : .05 ## x margin. See `axes.Axes.margins`
  300. #axes.ymargin : .05 ## y margin See `axes.Axes.margins`
  301. #polaraxes.grid : True ## display grid on polar axes
  302. #axes3d.grid : True ## display grid on 3d axes
  303. #### DATES
  304. ## These control the default format strings used in AutoDateFormatter.
  305. ## Any valid format datetime format string can be used (see the python
  306. ## `datetime` for details). For example using '%%x' will use the locale date representation
  307. ## '%%X' will use the locale time representation and '%%c' will use the full locale datetime
  308. ## representation.
  309. ## These values map to the scales:
  310. ## {'year': 365, 'month': 30, 'day': 1, 'hour': 1/24, 'minute': 1 / (24 * 60)}
  311. #date.autoformatter.year : %Y
  312. #date.autoformatter.month : %Y-%m
  313. #date.autoformatter.day : %Y-%m-%d
  314. #date.autoformatter.hour : %m-%d %H
  315. #date.autoformatter.minute : %d %H:%M
  316. #date.autoformatter.second : %H:%M:%S
  317. #date.autoformatter.microsecond : %M:%S.%f
  318. #### TICKS
  319. ## see http://matplotlib.org/api/axis_api.html#matplotlib.axis.Tick
  320. #xtick.top : False ## draw ticks on the top side
  321. #xtick.bottom : True ## draw ticks on the bottom side
  322. #xtick.labeltop : False ## draw label on the top
  323. #xtick.labelbottom : True ## draw label on the bottom
  324. #xtick.major.size : 3.5 ## major tick size in points
  325. #xtick.minor.size : 2 ## minor tick size in points
  326. #xtick.major.width : 0.8 ## major tick width in points
  327. #xtick.minor.width : 0.6 ## minor tick width in points
  328. #xtick.major.pad : 3.5 ## distance to major tick label in points
  329. #xtick.minor.pad : 3.4 ## distance to the minor tick label in points
  330. #xtick.color : 707074 ## color of the tick labels
  331. xtick.labelsize : 14 ## fontsize of the tick labels
  332. #xtick.direction : out ## direction: in, out, or inout
  333. #xtick.minor.visible : False ## visibility of minor ticks on x-axis
  334. #xtick.major.top : True ## draw x axis top major ticks
  335. #xtick.major.bottom : True ## draw x axis bottom major ticks
  336. #xtick.minor.top : True ## draw x axis top minor ticks
  337. #xtick.minor.bottom : True ## draw x axis bottom minor ticks
  338. #xtick.alignment : center ## alignment of xticks
  339. #ytick.left : True ## draw ticks on the left side
  340. #ytick.right : False ## draw ticks on the right side
  341. #ytick.labelleft : True ## draw tick labels on the left side
  342. #ytick.labelright : False ## draw tick labels on the right side
  343. #ytick.major.size : 3.5 ## major tick size in points
  344. #ytick.minor.size : 2 ## minor tick size in points
  345. #ytick.major.width : 0.8 ## major tick width in points
  346. #ytick.minor.width : 0.6 ## minor tick width in points
  347. #ytick.major.pad : 3.5 ## distance to major tick label in points
  348. #ytick.minor.pad : 3.4 ## distance to the minor tick label in points
  349. #ytick.color : 707074 ## color of the tick labels
  350. ytick.labelsize : 14 ## fontsize of the tick labels
  351. #ytick.direction : out ## direction: in, out, or inout
  352. #ytick.minor.visible : False ## visibility of minor ticks on y-axis
  353. #ytick.major.left : True ## draw y axis left major ticks
  354. #ytick.major.right : True ## draw y axis right major ticks
  355. #ytick.minor.left : True ## draw y axis left minor ticks
  356. #ytick.minor.right : True ## draw y axis right minor ticks
  357. #ytick.alignment : center_baseline ## alignment of yticks
  358. #### GRIDS
  359. grid.color : 93939c ## grid color
  360. grid.linestyle : -- ## solid
  361. #grid.linewidth : 0.8 ## in points
  362. grid.alpha : 0.2 ## transparency, between 0.0 and 1.0
  363. #### Legend
  364. #legend.loc : best
  365. #legend.frameon : True ## if True, draw the legend on a background patch
  366. #legend.framealpha : 0.8 ## legend patch transparency
  367. #legend.facecolor : inherit ## inherit from axes.facecolor; or color spec
  368. #legend.edgecolor : 0.8 ## background patch boundary color
  369. #legend.fancybox : True ## if True, use a rounded box for the
  370. ## legend background, else a rectangle
  371. #legend.shadow : False ## if True, give background a shadow effect
  372. #legend.numpoints : 1 ## the number of marker points in the legend line
  373. #legend.scatterpoints : 1 ## number of scatter points
  374. #legend.markerscale : 1.0 ## the relative size of legend markers vs. original
  375. #legend.fontsize : medium
  376. #legend.title_fontsize : None ## None sets to the same as the default axes.
  377. ## Dimensions as fraction of fontsize:
  378. #legend.borderpad : 0.4 ## border whitespace
  379. #legend.labelspacing : 0.5 ## the vertical space between the legend entries
  380. #legend.handlelength : 2.0 ## the length of the legend lines
  381. #legend.handleheight : 0.7 ## the height of the legend handle
  382. #legend.handletextpad : 0.8 ## the space between the legend line and legend text
  383. #legend.borderaxespad : 0.5 ## the border between the axes and legend edge
  384. #legend.columnspacing : 2.0 ## column separation
  385. #### FIGURE
  386. ## See http://matplotlib.org/api/figure_api.html#matplotlib.figure.Figure
  387. figure.titlesize : 20 ## size of the figure title (Figure.suptitle())
  388. figure.titleweight : 700 ## weight of the figure title
  389. figure.figsize : 8, 6 ## figure size in inches
  390. figure.dpi : 300 ## figure dots per inch
  391. #figure.facecolor : white ## figure facecolor
  392. #figure.edgecolor : white ## figure edgecolor
  393. #figure.frameon : True ## enable figure frame
  394. #figure.max_open_warning : 20 ## The maximum number of figures to open through
  395. ## the pyplot interface before emitting a warning.
  396. ## If less than one this feature is disabled.
  397. ## The figure subplot parameters. All dimensions are a fraction of the
  398. #figure.subplot.left : 0.125 ## the left side of the subplots of the figure
  399. #figure.subplot.right : 0.9 ## the right side of the subplots of the figure
  400. #figure.subplot.bottom : 0.11 ## the bottom of the subplots of the figure
  401. #figure.subplot.top : 0.88 ## the top of the subplots of the figure
  402. #figure.subplot.wspace : 0.2 ## the amount of width reserved for space between subplots,
  403. ## expressed as a fraction of the average axis width
  404. #figure.subplot.hspace : 0.2 ## the amount of height reserved for space between subplots,
  405. ## expressed as a fraction of the average axis height
  406. ## Figure layout
  407. #figure.autolayout : False ## When True, automatically adjust subplot
  408. ## parameters to make the plot fit the figure
  409. ## using `tight_layout`
  410. #figure.constrained_layout.use: False ## When True, automatically make plot
  411. ## elements fit on the figure. (Not compatible
  412. ## with `autolayout`, above).
  413. #figure.constrained_layout.h_pad : 0.04167 ## Padding around axes objects. Float representing
  414. #figure.constrained_layout.w_pad : 0.04167 ## inches. Default is 3./72. inches (3 pts)
  415. #figure.constrained_layout.hspace : 0.02 ## Space between subplot groups. Float representing
  416. #figure.constrained_layout.wspace : 0.02 ## a fraction of the subplot widths being separated.
  417. #### IMAGES
  418. #image.aspect : equal ## equal | auto | a number
  419. #image.interpolation : nearest ## see help(imshow) for options
  420. #image.cmap : viridis ## A colormap name, gray etc...
  421. #image.lut : 256 ## the size of the colormap lookup table
  422. #image.origin : upper ## lower | upper
  423. #image.resample : True
  424. #image.composite_image : True ## When True, all the images on a set of axes are
  425. ## combined into a single composite image before
  426. ## saving a figure as a vector graphics file,
  427. ## such as a PDF.
  428. #### CONTOUR PLOTS
  429. #contour.negative_linestyle : dashed ## string or on-off ink sequence
  430. #contour.corner_mask : True ## True | False | legacy
  431. #### ERRORBAR PLOTS
  432. #errorbar.capsize : 0 ## length of end cap on error bars in pixels
  433. #### HISTOGRAM PLOTS
  434. #hist.bins : 10 ## The default number of histogram bins.
  435. ## If Numpy 1.11 or later is
  436. ## installed, may also be `auto`
  437. #### SCATTER PLOTS
  438. #scatter.marker : o ## The default marker type for scatter plots.
  439. #### Agg rendering
  440. #### Warning: experimental, 2008/10/10
  441. #agg.path.chunksize : 0 ## 0 to disable; values in the range
  442. ## 10000 to 100000 can improve speed slightly
  443. ## and prevent an Agg rendering failure
  444. ## when plotting very large data sets,
  445. ## especially if they are very gappy.
  446. ## It may cause minor artifacts, though.
  447. ## A value of 20000 is probably a good
  448. ## starting point.
  449. #### PATHS
  450. #path.simplify : True ## When True, simplify paths by removing "invisible"
  451. ## points to reduce file size and increase rendering
  452. ## speed
  453. #path.simplify_threshold : 0.111111111111 ## The threshold of similarity below which
  454. ## vertices will be removed in the
  455. ## simplification process
  456. #path.snap : True ## When True, rectilinear axis-aligned paths will be snapped to
  457. ## the nearest pixel when certain criteria are met. When False,
  458. ## paths will never be snapped.
  459. #path.sketch : None ## May be none, or a 3-tuple of the form (scale, length,
  460. ## randomness).
  461. ## *scale* is the amplitude of the wiggle
  462. ## perpendicular to the line (in pixels). *length*
  463. ## is the length of the wiggle along the line (in
  464. ## pixels). *randomness* is the factor by which
  465. ## the length is randomly scaled.
  466. #path.effects : [] ##
  467. #### SAVING FIGURES
  468. ## the default savefig params can be different from the display params
  469. ## e.g., you may want a higher resolution, or to make the figure
  470. ## background white
  471. #savefig.dpi : figure ## figure dots per inch or 'figure'
  472. #savefig.facecolor : white ## figure facecolor when saving
  473. #savefig.edgecolor : white ## figure edgecolor when saving
  474. #savefig.format : png ## png, ps, pdf, svg
  475. #savefig.bbox : standard ## 'tight' or 'standard'.
  476. ## 'tight' is incompatible with pipe-based animation
  477. ## backends but will workd with temporary file based ones:
  478. ## e.g. setting animation.writer to ffmpeg will not work,
  479. ## use ffmpeg_file instead
  480. #savefig.pad_inches : 0.1 ## Padding to be used when bbox is set to 'tight'
  481. #savefig.jpeg_quality: 95 ## when a jpeg is saved, the default quality parameter.
  482. #savefig.directory : ~ ## default directory in savefig dialog box,
  483. ## leave empty to always use current working directory
  484. #savefig.transparent : False ## setting that controls whether figures are saved with a
  485. ## transparent background by default
  486. #savefig.frameon : True ## enable frame of figure when saving
  487. #savefig.orientation : portrait ## Orientation of saved figure
  488. ### tk backend params
  489. #tk.window_focus : False ## Maintain shell focus for TkAgg
  490. ### ps backend params
  491. #ps.papersize : letter ## auto, letter, legal, ledger, A0-A10, B0-B10
  492. #ps.useafm : False ## use of afm fonts, results in small files
  493. #ps.usedistiller : False ## can be: None, ghostscript or xpdf
  494. ## Experimental: may produce smaller files.
  495. ## xpdf intended for production of publication quality files,
  496. ## but requires ghostscript, xpdf and ps2eps
  497. #ps.distiller.res : 6000 ## dpi
  498. #ps.fonttype : 3 ## Output Type 3 (Type3) or Type 42 (TrueType)
  499. ### pdf backend params
  500. #pdf.compression : 6 ## integer from 0 to 9
  501. ## 0 disables compression (good for debugging)
  502. #pdf.fonttype : 3 ## Output Type 3 (Type3) or Type 42 (TrueType)
  503. #pdf.use14corefonts : False
  504. #pdf.inheritcolor : False
  505. ### svg backend params
  506. #svg.image_inline : True ## write raster image data directly into the svg file
  507. #svg.fonttype : path ## How to handle SVG fonts:
  508. ## none: Assume fonts are installed on the machine where the SVG will be viewed.
  509. ## path: Embed characters as paths -- supported by most SVG renderers
  510. ## svgfont: Embed characters as SVG fonts -- supported only by Chrome,
  511. ## Opera and Safari
  512. #svg.hashsalt : None ## if not None, use this string as hash salt
  513. ## instead of uuid4
  514. ### pgf parameter
  515. #pgf.rcfonts : True
  516. #pgf.preamble :
  517. #pgf.texsystem : xelatex
  518. ### docstring params
  519. ##docstring.hardcopy = False ## set this when you want to generate hardcopy docstring
  520. ## Event keys to interact with figures/plots via keyboard.
  521. ## Customize these settings according to your needs.
  522. ## Leave the field(s) empty if you don't need a key-map. (i.e., fullscreen : '')
  523. #keymap.fullscreen : f, ctrl+f ## toggling
  524. #keymap.home : h, r, home ## home or reset mnemonic
  525. #keymap.back : left, c, backspace ## forward / backward keys to enable
  526. #keymap.forward : right, v ## left handed quick navigation
  527. #keymap.pan : p ## pan mnemonic
  528. #keymap.zoom : o ## zoom mnemonic
  529. #keymap.save : s, ctrl+s ## saving current figure
  530. #keymap.help : f1 ## display help about active tools
  531. #keymap.quit : ctrl+w, cmd+w, q ## close the current figure
  532. #keymap.quit_all : W, cmd+W, Q ## close all figures
  533. #keymap.grid : g ## switching on/off major grids in current axes
  534. #keymap.grid_minor : G ## switching on/off minor grids in current axes
  535. #keymap.yscale : l ## toggle scaling of y-axes ('log'/'linear')
  536. #keymap.xscale : k, L ## toggle scaling of x-axes ('log'/'linear')
  537. #keymap.all_axes : a ## enable all axes
  538. #keymap.copy : ctrl+c, cmd+c ## Copy figure to clipboard
  539. ###ANIMATION settings
  540. #animation.html : none ## How to display the animation as HTML in
  541. ## the IPython notebook. 'html5' uses
  542. ## HTML5 video tag; 'jshtml' creates a
  543. ## Javascript animation
  544. #animation.writer : ffmpeg ## MovieWriter 'backend' to use
  545. #animation.codec : h264 ## Codec to use for writing movie
  546. #animation.bitrate: -1 ## Controls size/quality tradeoff for movie.
  547. ## -1 implies let utility auto-determine
  548. #animation.frame_format: png ## Controls frame format used by temp files
  549. #animation.html_args: ## Additional arguments to pass to html writer
  550. #animation.ffmpeg_path: ffmpeg ## Path to ffmpeg binary. Without full path
  551. ## $PATH is searched
  552. #animation.ffmpeg_args: ## Additional arguments to pass to ffmpeg
  553. #animation.avconv_path: avconv ## Path to avconv binary. Without full path
  554. ## $PATH is searched
  555. #animation.avconv_args: ## Additional arguments to pass to avconv
  556. #animation.convert_path: convert ## Path to ImageMagick's convert binary.
  557. ## On Windows use the full path since convert
  558. ## is also the name of a system tool.
  559. #animation.convert_args: ## Additional arguments to pass to convert
  560. #animation.embed_limit : 20.0