@@ -16,6 +16,9 @@ lines.solid_joinstyle : round # miter|round|bevel
16
16
lines.solid_capstyle : projecting # butt|round|projecting
17
17
lines.antialiased : True # render lines in antialised (no jaggies)
18
18
19
+ ### Marker props
20
+ markers.fillstyle: full
21
+
19
22
### PATCHES
20
23
# Patches are graphical objects that fill 2D space, like polygons or
21
24
# circles. See
@@ -109,6 +112,7 @@ text.latex.preamble : # IMPROPER USE OF THIS FEATURE WILL LEAD TO LATEX FAILURE
109
112
# beware of package collisions: color, geometry, graphicx,
110
113
# type1cm, textcomp. Adobe Postscript (PSSNFS) font packages
111
114
# may also be loaded, depending on your font settings
115
+ text.latex.preview : False
112
116
113
117
text.dvipnghack : None # some versions of dvipng don't handle alpha
114
118
# channel properly. Use True to correct
@@ -165,6 +169,8 @@ axes.facecolor : w # axes background color
165
169
axes.edgecolor : k # axes edge color
166
170
axes.linewidth : 1.0 # edge linewidth
167
171
axes.grid : False # display grid or not
172
+ axes.grid.which : major
173
+ axes.grid.axis : both
168
174
axes.titlesize : large # fontsize of the axes title
169
175
axes.titleweight : normal # font weight for axes title
170
176
axes.labelsize : medium # fontsize of the x any y labels
@@ -198,14 +204,18 @@ axes.color_cycle : b, g, r, c, m, y, k # color cycle for plot lines
198
204
# web-style hex
199
205
axes.xmargin : 0 # x margin. See `axes.Axes.margins`
200
206
axes.ymargin : 0 # y margin See `axes.Axes.margins`
201
-
207
+ axes.spines.bottom : True
208
+ axes.spines.left : True
209
+ axes.spines.right : True
210
+ axes.spines.top : True
202
211
polaraxes.grid : True # display grid on polar axes
203
212
axes3d.grid : True # display grid on 3d axes
204
213
205
214
### TICKS
206
215
# see http://matplotlib.org/api/axis_api.html#matplotlib.axis.Tick
207
216
xtick.major.size : 4 # major tick size in points
208
217
xtick.minor.size : 2 # minor tick size in points
218
+ xtick.minor.visible : False
209
219
xtick.major.width : 0.5 # major tick width in points
210
220
xtick.minor.width : 0.5 # minor tick width in points
211
221
xtick.major.pad : 4 # distance to major tick label in points
@@ -216,6 +226,7 @@ xtick.direction : in # direction: in, out, or inout
216
226
217
227
ytick.major.size : 4 # major tick size in points
218
228
ytick.minor.size : 2 # minor tick size in points
229
+ ytick.minor.visible : False
219
230
ytick.major.width : 0.5 # major tick width in points
220
231
ytick.minor.width : 0.5 # minor tick width in points
221
232
ytick.major.pad : 4 # distance to major tick label in points
@@ -269,6 +280,7 @@ figure.autolayout : False # When True, automatically adjust subplot
269
280
figure.max_open_warning : 20 # The maximum number of figures to open through
270
281
# the pyplot interface before emitting a warning.
271
282
# If less than one this feature is disabled.
283
+ figure.frameon : True
272
284
273
285
# The figure subplot parameters. All dimensions are a fraction of the
274
286
# figure width or height
@@ -292,6 +304,43 @@ image.composite_image : True
292
304
contour.negative_linestyle : dashed # dashed | solid
293
305
contour.corner_mask : True
294
306
307
+ # errorbar props
308
+ errorbar.capsize: 3
309
+
310
+ ### Boxplots
311
+ boxplot.bootstrap: None
312
+ boxplot.boxprops.color: b
313
+ boxplot.boxprops.linestyle: -
314
+ boxplot.boxprops.linewidth: 1.0
315
+ boxplot.capprops.color: k
316
+ boxplot.capprops.linestyle: -
317
+ boxplot.capprops.linewidth: 1.0
318
+ boxplot.flierprops.color: b
319
+ boxplot.flierprops.linestyle: -
320
+ boxplot.flierprops.linewidth: 1.0
321
+ boxplot.flierprops.marker: +
322
+ boxplot.flierprops.markeredgecolor: k
323
+ boxplot.flierprops.markerfacecolor: b
324
+ boxplot.flierprops.markersize: 6.0
325
+ boxplot.meanline: False
326
+ boxplot.meanprops.color: r
327
+ boxplot.meanprops.linestyle: -
328
+ boxplot.meanprops.linewidth: 1.0
329
+ boxplot.medianprops.color: r
330
+ boxplot.medianprops.linestyle: -
331
+ boxplot.medianprops.linewidth: 1.0
332
+ boxplot.notch: False
333
+ boxplot.patchartist: False
334
+ boxplot.showbox: True
335
+ boxplot.showcaps: True
336
+ boxplot.showfliers: True
337
+ boxplot.showmeans: False
338
+ boxplot.vertical: True
339
+ boxplot.whiskerprops.color: b
340
+ boxplot.whiskerprops.linestyle: --
341
+ boxplot.whiskerprops.linewidth: 1.0
342
+ boxplot.whiskers: 1.5
343
+
295
344
### Agg rendering
296
345
### Warning: experimental, 2008/10/10
297
346
agg.path.chunksize : 0 # 0 to disable; values in the range
@@ -306,7 +355,7 @@ agg.path.chunksize : 0 # 0 to disable; values in the range
306
355
path.simplify : True # When True, simplify paths by removing "invisible"
307
356
# points to reduce file size and increase rendering
308
357
# speed
309
- path.simplify_threshold : 0.111111111111
358
+ path.simplify_threshold : 0.1111111111111111
310
359
# The threshold of similarity below which
311
360
# vertices will be removed in the simplification
312
361
# process
@@ -320,6 +369,7 @@ path.sketch : None # May be none, or a 3-tuple of the form (scale, length,
320
369
# is the length of the wiggle along the line (in
321
370
# pixels). *randomness* is the factor by which
322
371
# the length is randomly scaled.
372
+ path.effects :
323
373
324
374
# the default savefig params can be different from the display params
325
375
# e.g., you may want a higher resolution, or to make the figure
@@ -339,6 +389,10 @@ savefig.directory : ~ # default directory in savefig dialog box,
339
389
# leave empty to always use current working directory
340
390
savefig.transparent : False # setting that controls whether figures are saved with a
341
391
# transparent background by default
392
+ savefig.frameon : True
393
+ savefig.orientation : portrait
394
+
395
+ nbagg.transparent: True
342
396
343
397
# tk backend params
344
398
tk.window_focus : False # Maintain shell focus for TkAgg
@@ -413,6 +467,8 @@ keymap.yscale : l # toggle scaling of y-axes ('log'/'linear')
413
467
keymap.xscale : k, L # toggle scaling of x-axes ('log'/'linear')
414
468
keymap.all_axes : a # enable all axes
415
469
470
+ toolbar: toolbar2
471
+
416
472
###ANIMATION settings
417
473
animation.writer : ffmpeg # MovieWriter 'backend' to use
418
474
animation.codec : mpeg4 # Codec to use for writing movie
@@ -432,3 +488,5 @@ animation.mencoder_args: # Additional arguments to pass to mencoder
432
488
animation.convert_path: convert # Path to ImageMagick's convert binary.
433
489
# On Windows use the full path since convert
434
490
# is also the name of a system tool.
491
+ animation.convert_args:
492
+ animation.html: none
0 commit comments