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