Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Contenu du module « matplotlib.pyplot »

Liste des classes du module matplotlib.pyplot

Nom de la classe Description
Annotation
Arrow An arrow patch. [extrait de Arrow.__doc__]
Artist
AutoLocator
Axes
Button
Circle A circle patch. [extrait de Circle.__doc__]
Figure
FigureCanvasBase
FixedFormatter
FixedLocator
FormatStrFormatter
Formatter
FuncFormatter
GridSpec
IndexLocator
Line2D
LinearLocator
Locator
LogFormatter
LogFormatterExponent
LogFormatterMathtext
LogLocator
MaxNLocator
MouseButton An enumeration. [extrait de MouseButton.__doc__]
MultipleLocator
Normalize
NullFormatter Always return the empty string. [extrait de NullFormatter.__doc__]
NullLocator
Number All numbers inherit from this class. [extrait de Number.__doc__]
PolarAxes
Polygon A general polygon patch. [extrait de Polygon.__doc__]
Rectangle
ScalarFormatter
Slider
SubplotSpec
SubplotTool
Text Handle storing and drawing of text in window or data coordinates. [extrait de Text.__doc__]
TickHelper
Widget

Liste des fonctions du module matplotlib.pyplot

Signature de la fonction Description
acorr(x, *, data=None, **kwargs) Plot the autocorrelation of *x*. [extrait de acorr.__doc__]
angle_spectrum(x, Fs=None, Fc=None, window=None, pad_to=None, sides=None, *, data=None, **kwargs) Plot the angle spectrum. [extrait de angle_spectrum.__doc__]
annotate(text, xy, *args, **kwargs)
arrow(x, y, dx, dy, **kwargs) Add an arrow to the Axes. [extrait de arrow.__doc__]
autoscale(enable=True, axis='both', tight=None)
autumn()
axes(arg=None, **kwargs) Add an axes to the current figure and make it the current axes. [extrait de axes.__doc__]
axhline(y=0, xmin=0, xmax=1, **kwargs) Add a horizontal line across the axis. [extrait de axhline.__doc__]
axhspan(ymin, ymax, xmin=0, xmax=1, **kwargs) Add a horizontal span (rectangle) across the Axes. [extrait de axhspan.__doc__]
axis(*args, emit=True, **kwargs)
axline(xy1, xy2=None, *, slope=None, **kwargs) Add an infinitely long straight line. [extrait de axline.__doc__]
axvline(x=0, ymin=0, ymax=1, **kwargs) Add a vertical line across the Axes. [extrait de axvline.__doc__]
axvspan(xmin, xmax, ymin=0, ymax=1, **kwargs) Add a vertical span (rectangle) across the Axes. [extrait de axvspan.__doc__]
bar(x, height, width=0.8, bottom=None, *, align='center', data=None, **kwargs) Make a bar plot. [extrait de bar.__doc__]
bar_label(container, labels=None, *, fmt='%g', label_type='edge', padding=0, **kwargs)
barbs(*args, data=None, **kw) Plot a 2D field of barbs. [extrait de barbs.__doc__]
barh(y, width, height=0.8, left=None, *, align='center', **kwargs) Make a horizontal bar plot. [extrait de barh.__doc__]
bone()
box(on=None)
boxplot(x, notch=None, sym=None, vert=None, whis=None, positions=None, widths=None, patch_artist=None, bootstrap=None, usermedians=None, conf_intervals=None, meanline=None, showmeans=None, showcaps=None, showbox=None, showfliers=None, boxprops=None, labels=None, flierprops=None, medianprops=None, meanprops=None, capprops=None, whiskerprops=None, manage_ticks=True, autorange=False, zorder=None, *, data=None) Make a box and whisker plot. [extrait de boxplot.__doc__]
broken_barh(xranges, yrange, *, data=None, **kwargs) Plot a horizontal sequence of rectangles. [extrait de broken_barh.__doc__]
cla() Clear the current axes. [extrait de cla.__doc__]
clabel(CS, levels=None, **kwargs)
clf() Clear the current figure. [extrait de clf.__doc__]
clim(vmin=None, vmax=None)
close(fig=None)
cohere(x, y, NFFT=256, Fs=2, Fc=0, detrend=<function detrend_none at 0x7f5050c634c0>, window=<function window_hanning at 0x7f5050c63280>, noverlap=0, pad_to=None, sides='default', scale_by_freq=None, *, data=None, **kwargs) Plot the coherence between *x* and *y*. [extrait de cohere.__doc__]
colorbar(mappable=None, cax=None, ax=None, **kw)
colormaps()
connect(s, func)
contour(*args, data=None, **kwargs)
contourf(*args, data=None, **kwargs)
cool()
copper()
csd(x, y, NFFT=None, Fs=None, Fc=None, detrend=None, window=None, noverlap=None, pad_to=None, sides=None, scale_by_freq=None, return_line=None, *, data=None, **kwargs) Plot the cross-spectral density. [extrait de csd.__doc__]
cycler(*args, **kwargs)
delaxes(ax=None)
disconnect(cid)
draw()
draw_all(force=False)
draw_if_interactive()
errorbar(x, y, yerr=None, xerr=None, fmt='', ecolor=None, elinewidth=None, capsize=None, barsabove=False, lolims=False, uplims=False, xlolims=False, xuplims=False, errorevery=1, capthick=None, *, data=None, **kwargs) Plot y versus x as lines and/or markers with attached errorbars. [extrait de errorbar.__doc__]
eventplot(positions, orientation='horizontal', lineoffsets=1, linelengths=1, linewidths=None, colors=None, linestyles='solid', *, data=None, **kwargs) Plot identical parallel lines at the given positions. [extrait de eventplot.__doc__]
figaspect(arg)
figimage(X, xo=0, yo=0, alpha=None, norm=None, cmap=None, vmin=None, vmax=None, origin=None, resize=False, **kwargs)
figlegend(*args, **kwargs) Place a legend on the figure. [extrait de figlegend.__doc__]
fignum_exists(num) Return whether the figure with the given id exists. [extrait de fignum_exists.__doc__]
figtext(x, y, s, fontdict=None, **kwargs) Add text to figure. [extrait de figtext.__doc__]
figure(num=None, figsize=None, dpi=None, facecolor=None, edgecolor=None, frameon=True, FigureClass=<class 'matplotlib.figure.Figure'>, clear=False, **kwargs)
fill(*args, data=None, **kwargs)
fill_between(x, y1, y2=0, where=None, interpolate=False, step=None, *, data=None, **kwargs) Fill the area between two horizontal curves. [extrait de fill_between.__doc__]
fill_betweenx(y, x1, x2=0, where=None, step=None, interpolate=False, *, data=None, **kwargs) Fill the area between two vertical curves. [extrait de fill_betweenx.__doc__]
findobj(o=None, match=None, include_self=True)
flag()
gca(**kwargs) Get the current Axes, creating one if necessary. [extrait de gca.__doc__]
gcf()
gci()
get(obj, *args, **kwargs)
get_backend()
get_cmap(name=None, lut=None)
get_current_fig_manager()
get_figlabels() Return a list of existing figure labels. [extrait de get_figlabels.__doc__]
get_fignums() Return a list of existing figure numbers. [extrait de get_fignums.__doc__]
get_plot_commands()
get_scale_names() Return the names of the available scales. [extrait de get_scale_names.__doc__]
getp(obj, *args, **kwargs)
ginput(n=1, timeout=30, show_clicks=True, mouse_add=<MouseButton.LEFT: 1>, mouse_pop=<MouseButton.RIGHT: 3>, mouse_stop=<MouseButton.MIDDLE: 2>)
gray()
grid(b=None, which='major', axis='both', **kwargs) Configure the grid lines. [extrait de grid.__doc__]
hexbin(x, y, C=None, gridsize=100, bins=None, xscale='linear', yscale='linear', extent=None, cmap=None, norm=None, vmin=None, vmax=None, alpha=None, linewidths=None, edgecolors='face', reduce_C_function=<function mean at 0x7f507722a280>, mincnt=None, marginals=False, *, data=None, **kwargs) Make a 2D hexagonal binning plot of points *x*, *y*. [extrait de hexbin.__doc__]
hist(x, bins=None, range=None, density=False, weights=None, cumulative=False, bottom=None, histtype='bar', align='mid', orientation='vertical', rwidth=None, log=False, color=None, label=None, stacked=False, *, data=None, **kwargs) Plot a histogram. [extrait de hist.__doc__]
hist2d(x, y, bins=10, range=None, density=False, weights=None, cmin=None, cmax=None, *, data=None, **kwargs) Make a 2D histogram plot. [extrait de hist2d.__doc__]
hlines(y, xmin, xmax, colors=None, linestyles='solid', label='', *, data=None, **kwargs) Plot horizontal lines at each *y* from *xmin* to *xmax*. [extrait de hlines.__doc__]
hot()
hsv()
imread(fname, format=None)
imsave(fname, arr, **kwargs)
imshow(X, cmap=None, norm=None, aspect=None, interpolation=None, alpha=None, vmin=None, vmax=None, origin=None, extent=None, *, filternorm=True, filterrad=4.0, resample=None, url=None, data=None, **kwargs) Display data as an image, i.e., on a 2D regular raster. [extrait de imshow.__doc__]
inferno()
install_repl_displayhook()
interactive(b)
ioff()
ion()
isinteractive()
jet()
legend(*args, **kwargs) Place a legend on the Axes. [extrait de legend.__doc__]
locator_params(axis='both', tight=None, **kwargs)
loglog(*args, **kwargs) Make a plot with log scaling on both the x and y axis. [extrait de loglog.__doc__]
magma()
magnitude_spectrum(x, Fs=None, Fc=None, window=None, pad_to=None, sides=None, scale=None, *, data=None, **kwargs) Plot the magnitude spectrum. [extrait de magnitude_spectrum.__doc__]
margins(*margins, x=None, y=None, tight=True)
matshow(A, fignum=None, **kwargs)
minorticks_off() Remove minor ticks from the axes. [extrait de minorticks_off.__doc__]
minorticks_on()
new_figure_manager(num, *args, **kwargs) Create a new figure manager instance. [extrait de new_figure_manager.__doc__]
nipy_spectral()
pause(interval)
pcolor(*args, shading=None, alpha=None, norm=None, cmap=None, vmin=None, vmax=None, data=None, **kwargs) Create a pseudocolor plot with a non-regular rectangular grid. [extrait de pcolor.__doc__]
pcolormesh(*args, alpha=None, norm=None, cmap=None, vmin=None, vmax=None, shading=None, antialiased=False, data=None, **kwargs) Create a pseudocolor plot with a non-regular rectangular grid. [extrait de pcolormesh.__doc__]
phase_spectrum(x, Fs=None, Fc=None, window=None, pad_to=None, sides=None, *, data=None, **kwargs) Plot the phase spectrum. [extrait de phase_spectrum.__doc__]
pie(x, explode=None, labels=None, colors=None, autopct=None, pctdistance=0.6, shadow=False, labeldistance=1.1, startangle=0, radius=1, counterclock=True, wedgeprops=None, textprops=None, center=(0, 0), frame=False, rotatelabels=False, *, normalize=None, data=None) Plot a pie chart. [extrait de pie.__doc__]
pink()
plasma()
plot(*args, scalex=True, scaley=True, data=None, **kwargs) Plot y versus x as lines and/or markers. [extrait de plot.__doc__]
plot_date(x, y, fmt='o', tz=None, xdate=True, ydate=False, *, data=None, **kwargs) Plot co-ercing the axis to treat floats as dates. [extrait de plot_date.__doc__]
plotting() ============================ ==================================================================================================================== [extrait de plotting.__doc__]
polar(*args, **kwargs)
prism()
psd(x, NFFT=None, Fs=None, Fc=None, detrend=None, window=None, noverlap=None, pad_to=None, sides=None, scale_by_freq=None, return_line=None, *, data=None, **kwargs) Plot the power spectral density. [extrait de psd.__doc__]
quiver(*args, data=None, **kw)
quiverkey(Q, X, Y, U, label, **kw)
rc(group, **kwargs)
rc_context(rc=None, fname=None)
rcdefaults()
register_cmap(name=None, cmap=None, *, override_builtin=False)
rgrids(radii=None, labels=None, angle=None, fmt=None, **kwargs)
savefig(*args, **kwargs)
sca(ax)
scatter(x, y, s=None, c=None, marker=None, cmap=None, norm=None, vmin=None, vmax=None, alpha=None, linewidths=None, *, edgecolors=None, plotnonfinite=False, data=None, **kwargs) A scatter plot of *y* vs. *x* with varying marker size and/or color. [extrait de scatter.__doc__]
sci(im)
semilogx(*args, **kwargs) Make a plot with log scaling on the x axis. [extrait de semilogx.__doc__]
semilogy(*args, **kwargs) Make a plot with log scaling on the y axis. [extrait de semilogy.__doc__]
set_cmap(cmap)
set_loglevel(level)
setp(obj, *args, **kwargs)
show(*, block=None)
specgram(x, NFFT=None, Fs=None, Fc=None, detrend=None, window=None, noverlap=None, cmap=None, xextent=None, pad_to=None, sides=None, scale_by_freq=None, mode=None, scale=None, vmin=None, vmax=None, *, data=None, **kwargs) Plot a spectrogram. [extrait de specgram.__doc__]
spring()
spy(Z, precision=0, marker=None, markersize=None, aspect='equal', origin='upper', **kwargs) Plot the sparsity pattern of a 2D array. [extrait de spy.__doc__]
stackplot(x, *args, labels=(), colors=None, baseline='zero', data=None, **kwargs) Draw a stacked area plot. [extrait de stackplot.__doc__]
stairs(values, edges=None, *, orientation='vertical', baseline=0, fill=False, data=None, **kwargs) A stepwise constant function as a line with bounding edges [extrait de stairs.__doc__]
stem(*args, linefmt=None, markerfmt=None, basefmt=None, bottom=0, label=None, use_line_collection=True, orientation='vertical', data=None) Create a stem plot. [extrait de stem.__doc__]
step(x, y, *args, where='pre', data=None, **kwargs)
streamplot(x, y, u, v, density=1, linewidth=None, color=None, cmap=None, norm=None, arrowsize=1, arrowstyle='-|>', minlength=0.1, transform=None, zorder=None, start_points=None, maxlength=4.0, integration_direction='both', *, data=None) Draw streamlines of a vector flow. [extrait de streamplot.__doc__]
subplot(*args, **kwargs) Add an Axes to the current figure or retrieve an existing Axes. [extrait de subplot.__doc__]
subplot2grid(shape, loc, rowspan=1, colspan=1, fig=None, **kwargs)
subplot_mosaic(mosaic, *, subplot_kw=None, gridspec_kw=None, empty_sentinel='.', **fig_kw)
subplot_tool(targetfig=None)
subplots(nrows=1, ncols=1, *, sharex=False, sharey=False, squeeze=True, subplot_kw=None, gridspec_kw=None, **fig_kw)
subplots_adjust(left=None, bottom=None, right=None, top=None, wspace=None, hspace=None)
summer()
suptitle(t, **kwargs) Add a centered suptitle to the figure. [extrait de suptitle.__doc__]
switch_backend(newbackend)
table(cellText=None, cellColours=None, cellLoc='right', colWidths=None, rowLabels=None, rowColours=None, rowLoc='left', colLabels=None, colColours=None, colLoc='center', loc='bottom', bbox=None, edges='closed', **kwargs) Add a table to an `~.axes.Axes`. [extrait de table.__doc__]
text(x, y, s, fontdict=None, **kwargs) Add text to the Axes. [extrait de text.__doc__]
thetagrids(angles=None, labels=None, fmt=None, **kwargs)
tick_params(axis='both', **kwargs)
ticklabel_format(*, axis='both', style='', scilimits=None, useOffset=None, useLocale=None, useMathText=None)
tight_layout(*, pad=1.08, h_pad=None, w_pad=None, rect=None)
title(label, fontdict=None, loc=None, pad=None, *, y=None, **kwargs)
tricontour(*args, **kwargs) Draw contour lines on an unstructured triangular grid. [extrait de tricontour.__doc__]
tricontourf(*args, **kwargs) Draw contour regions on an unstructured triangular grid. [extrait de tricontourf.__doc__]
tripcolor(*args, alpha=1.0, norm=None, cmap=None, vmin=None, vmax=None, shading='flat', facecolors=None, **kwargs)
triplot(*args, **kwargs)
twinx(ax=None)
twiny(ax=None)
uninstall_repl_displayhook()
violinplot(dataset, positions=None, vert=True, widths=0.5, showmeans=False, showextrema=True, showmedians=False, quantiles=None, points=100, bw_method=None, *, data=None) Make a violin plot. [extrait de violinplot.__doc__]
viridis()
vlines(x, ymin, ymax, colors=None, linestyles='solid', label='', *, data=None, **kwargs) Plot vertical lines at each *x* from *ymin* to *ymax*. [extrait de vlines.__doc__]
waitforbuttonpress(timeout=-1)
winter()
xcorr(x, y, normed=True, detrend=<function detrend_none at 0x7f5050c634c0>, usevlines=True, maxlags=10, *, data=None, **kwargs) Plot the cross correlation between *x* and *y*. [extrait de xcorr.__doc__]
xkcd(scale=1, length=100, randomness=2)
xlabel(xlabel, fontdict=None, labelpad=None, *, loc=None, **kwargs)
xlim(*args, **kwargs)
xscale(value, **kwargs)
xticks(ticks=None, labels=None, **kwargs)
ylabel(ylabel, fontdict=None, labelpad=None, *, loc=None, **kwargs)
ylim(*args, **kwargs)
yscale(value, **kwargs)
yticks(ticks=None, labels=None, **kwargs)

Liste des variables globales du module matplotlib.pyplot

Nom de la variable globale Valeur
rcParams _internal.classic_mode: False agg.path.chunksize: 0 animation.avconv_args: [] animation.avconv_path: avconv animation.bitrate: -1 animation.codec: h264 animation.convert_args: [] animation.convert_path: convert animation.embed_limit: 20.0 animation.ffmpeg_args: [] animation.ffmpeg_path: ffmpeg animation.frame_format: png animation.html: none animation.html_args: [] animation.writer: ffmpeg axes.autolimit_mode: data axes.axisbelow: line axes.edgecolor: black axes.facecolor: white axes.formatter.limits: [-5, 6] axes.formatter.min_exponent: 0 axes.formatter.offset_threshold: 4 axes.formatter.use_locale: False axes.formatter.use_mathtext: False axes.formatter.useoffset: True axes.grid: False axes.grid.axis: both axes.grid.which: major axes.labelcolor: black axes.labelpad: 4.0 axes.labelsize: medium axes.labelweight: normal axes.linewidth: 0.8 axes.prop_cycle: cycler('color', ['#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', '#8c564b', '#e377c2', '#7f7f7f', '#bcbd22', '#17becf']) axes.spines.bottom: True axes.spines.left: True axes.spines.right: True axes.spines.top: True axes.titlecolor: auto axes.titlelocation: center axes.titlepad: 6.0 axes.titlesize: large axes.titleweight: normal axes.titley: None axes.unicode_minus: True axes.xmargin: 0.05 axes.ymargin: 0.05 axes.zmargin: 0.05 axes3d.grid: True backend: TkAgg backend_fallback: True boxplot.bootstrap: None boxplot.boxprops.color: black boxplot.boxprops.linestyle: - boxplot.boxprops.linewidth: 1.0 boxplot.capprops.color: black boxplot.capprops.linestyle: - boxplot.capprops.linewidth: 1.0 boxplot.flierprops.color: black boxplot.flierprops.linestyle: none boxplot.flierprops.linewidth: 1.0 boxplot.flierprops.marker: o boxplot.flierprops.markeredgecolor: black boxplot.flierprops.markeredgewidth: 1.0 boxplot.flierprops.markerfacecolor: none boxplot.flierprops.markersize: 6.0 boxplot.meanline: False boxplot.meanprops.color: C2 boxplot.meanprops.linestyle: -- boxplot.meanprops.linewidth: 1.0 boxplot.meanprops.marker: ^ boxplot.meanprops.markeredgecolor: C2 boxplot.meanprops.markerfacecolor: C2 boxplot.meanprops.markersize: 6.0 boxplot.medianprops.color: C1 boxplot.medianprops.linestyle: - boxplot.medianprops.linewidth: 1.0 boxplot.notch: False boxplot.patchartist: False boxplot.showbox: True boxplot.showcaps: True boxplot.showfliers: True boxplot.showmeans: False boxplot.vertical: True boxplot.whiskerprops.color: black boxplot.whiskerprops.linestyle: - boxplot.whiskerprops.linewidth: 1.0 boxplot.whiskers: 1.5 contour.corner_mask: True contour.linewidth: None contour.negative_linestyle: dashed date.autoformatter.day: %Y-%m-%d date.autoformatter.hour: %m-%d %H date.autoformatter.microsecond: %M:%S.%f date.autoformatter.minute: %d %H:%M date.autoformatter.month: %Y-%m date.autoformatter.second: %H:%M:%S date.autoformatter.year: %Y date.converter: None date.epoch: 1970-01-01T00:00:00 date.interval_multiples: None docstring.hardcopy: False errorbar.capsize: 0.0 figure.autolayout: False figure.constrained_layout.h_pad: 0.04167 figure.constrained_layout.hspace: 0.02 figure.constrained_layout.use: False figure.constrained_layout.w_pad: 0.04167 figure.constrained_layout.wspace: 0.02 figure.dpi: 100.0 figure.edgecolor: white figure.facecolor: white figure.figsize: [6.4, 4.8] figure.frameon: True figure.max_open_warning: 20 figure.raise_window: True figure.subplot.bottom: 0.11 figure.subplot.hspace: 0.2 figure.subplot.left: 0.125 figure.subplot.right: 0.9 figure.subplot.top: 0.88 figure.subplot.wspace: 0.2 figure.titlesize: large figure.titleweight: normal font.cursive: ['Apple Chancery', 'Textile', 'Zapf Chancery', 'Sand', 'Script MT', 'Felipa', 'Comic Neue', 'Comic Sans MS', 'cursive'] font.family: ['sans-serif'] font.fantasy: ['Chicago', 'Charcoal', 'Impact', 'Western', 'Humor Sans', 'xkcd', 'fantasy'] font.monospace: ['DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Computer Modern Typewriter', 'Andale Mono', 'Nimbus Mono L', 'Courier New', 'Courier', 'Fixed', 'Terminal', 'monospace'] font.sans-serif: ['DejaVu Sans', 'Bitstream Vera Sans', 'Computer Modern Sans Serif', 'Lucida Grande', 'Verdana', 'Geneva', 'Lucid', 'Arial', 'Helvetica', 'Avant Garde', 'sans-serif'] 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'] font.size: 10.0 font.stretch: normal font.style: normal font.variant: normal font.weight: normal grid.alpha: 1.0 grid.color: #b0b0b0 grid.linestyle: - grid.linewidth: 0.8 hatch.color: black hatch.linewidth: 1.0 hist.bins: 10 image.aspect: equal image.cmap: viridis image.composite_image: True image.interpolation: antialiased image.lut: 256 image.origin: upper image.resample: True interactive: False keymap.all_axes: ['a'] keymap.back: ['left', 'c', 'backspace', 'MouseButton.BACK'] keymap.copy: ['ctrl+c', 'cmd+c'] keymap.forward: ['right', 'v', 'MouseButton.FORWARD'] keymap.fullscreen: ['f', 'ctrl+f'] keymap.grid: ['g'] keymap.grid_minor: ['G'] keymap.help: ['f1'] keymap.home: ['h', 'r', 'home'] keymap.pan: ['p'] keymap.quit: ['ctrl+w', 'cmd+w', 'q'] keymap.quit_all: [] keymap.save: ['s', 'ctrl+s'] keymap.xscale: ['k', 'L'] keymap.yscale: ['l'] keymap.zoom: ['o'] legend.borderaxespad: 0.5 legend.borderpad: 0.4 legend.columnspacing: 2.0 legend.edgecolor: 0.8 legend.facecolor: inherit legend.fancybox: True legend.fontsize: medium legend.framealpha: 0.8 legend.frameon: True legend.handleheight: 0.7 legend.handlelength: 2.0 legend.handletextpad: 0.8 legend.labelspacing: 0.5 legend.loc: best legend.markerscale: 1.0 legend.numpoints: 1 legend.scatterpoints: 1 legend.shadow: False legend.title_fontsize: None lines.antialiased: True lines.color: C0 lines.dash_capstyle: butt lines.dash_joinstyle: round lines.dashdot_pattern: [6.4, 1.6, 1.0, 1.6] lines.dashed_pattern: [3.7, 1.6] lines.dotted_pattern: [1.0, 1.65] lines.linestyle: - lines.linewidth: 1.5 lines.marker: None lines.markeredgecolor: auto lines.markeredgewidth: 1.0 lines.markerfacecolor: auto lines.markersize: 6.0 lines.scale_dashes: True lines.solid_capstyle: projecting lines.solid_joinstyle: round markers.fillstyle: full mathtext.bf: sans:bold mathtext.cal: cursive mathtext.default: it mathtext.fallback: cm mathtext.fallback_to_cm: None mathtext.fontset: dejavusans mathtext.it: sans:italic mathtext.rm: sans mathtext.sf: sans mathtext.tt: monospace patch.antialiased: True patch.edgecolor: black patch.facecolor: C0 patch.force_edgecolor: False patch.linewidth: 1.0 path.effects: [] path.simplify: True path.simplify_threshold: 0.111111111111 path.sketch: None path.snap: True pcolor.shading: flat pcolormesh.snap: True pdf.compression: 6 pdf.fonttype: 3 pdf.inheritcolor: False pdf.use14corefonts: False pgf.preamble: pgf.rcfonts: True pgf.texsystem: xelatex polaraxes.grid: True ps.distiller.res: 6000 ps.fonttype: 3 ps.papersize: letter ps.useafm: False ps.usedistiller: None savefig.bbox: None savefig.directory: ~ savefig.dpi: figure savefig.edgecolor: auto savefig.facecolor: auto savefig.format: png savefig.jpeg_quality: 95 savefig.orientation: portrait savefig.pad_inches: 0.1 savefig.transparent: False scatter.edgecolors: face scatter.marker: o svg.fonttype: path svg.hashsalt: None svg.image_inline: True text.antialiased: True text.color: black text.hinting: force_autohint text.hinting_factor: 8 text.kerning_factor: 0 text.latex.preamble: text.latex.preview: False text.usetex: False timezone: UTC tk.window_focus: False toolbar: toolbar2 webagg.address: 127.0.0.1 webagg.open_in_browser: True webagg.port: 8988 webagg.port_retries: 50 xaxis.labellocation: center xtick.alignment: center xtick.bottom: True xtick.color: black xtick.direction: out xtick.labelbottom: True xtick.labelcolor: inherit xtick.labelsize: medium xtick.labeltop: False xtick.major.bottom: True xtick.major.pad: 3.5 xtick.major.size: 3.5 xtick.major.top: True xtick.major.width: 0.8 xtick.minor.bottom: True xtick.minor.pad: 3.4 xtick.minor.size: 2.0 xtick.minor.top: True xtick.minor.visible: False xtick.minor.width: 0.6 xtick.top: False yaxis.labellocation: center ytick.alignment: center_baseline ytick.color: black ytick.direction: out ytick.labelcolor: inherit ytick.labelleft: True ytick.labelright: False ytick.labelsize: medium ytick.left: True ytick.major.left: True ytick.major.pad: 3.5 ytick.major.right: True ytick.major.size: 3.5 ytick.major.width: 0.8 ytick.minor.left: True ytick.minor.pad: 3.4 ytick.minor.right: True ytick.minor.size: 2.0 ytick.minor.visible: False ytick.minor.width: 0.6 ytick.right: False
rcParamsDefault _internal.classic_mode: False agg.path.chunksize: 0 animation.avconv_args: [] animation.avconv_path: avconv animation.bitrate: -1 animation.codec: h264 animation.convert_args: [] animation.convert_path: convert animation.embed_limit: 20.0 animation.ffmpeg_args: [] animation.ffmpeg_path: ffmpeg animation.frame_format: png animation.html: none animation.html_args: [] animation.writer: ffmpeg axes.autolimit_mode: data axes.axisbelow: line axes.edgecolor: black axes.facecolor: white axes.formatter.limits: [-5, 6] axes.formatter.min_exponent: 0 axes.formatter.offset_threshold: 4 axes.formatter.use_locale: False axes.formatter.use_mathtext: False axes.formatter.useoffset: True axes.grid: False axes.grid.axis: both axes.grid.which: major axes.labelcolor: black axes.labelpad: 4.0 axes.labelsize: medium axes.labelweight: normal axes.linewidth: 0.8 axes.prop_cycle: cycler('color', ['#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', '#8c564b', '#e377c2', '#7f7f7f', '#bcbd22', '#17becf']) axes.spines.bottom: True axes.spines.left: True axes.spines.right: True axes.spines.top: True axes.titlecolor: auto axes.titlelocation: center axes.titlepad: 6.0 axes.titlesize: large axes.titleweight: normal axes.titley: None axes.unicode_minus: True axes.xmargin: 0.05 axes.ymargin: 0.05 axes.zmargin: 0.05 axes3d.grid: True backend: TkAgg backend_fallback: True boxplot.bootstrap: None boxplot.boxprops.color: black boxplot.boxprops.linestyle: - boxplot.boxprops.linewidth: 1.0 boxplot.capprops.color: black boxplot.capprops.linestyle: - boxplot.capprops.linewidth: 1.0 boxplot.flierprops.color: black boxplot.flierprops.linestyle: none boxplot.flierprops.linewidth: 1.0 boxplot.flierprops.marker: o boxplot.flierprops.markeredgecolor: black boxplot.flierprops.markeredgewidth: 1.0 boxplot.flierprops.markerfacecolor: none boxplot.flierprops.markersize: 6.0 boxplot.meanline: False boxplot.meanprops.color: C2 boxplot.meanprops.linestyle: -- boxplot.meanprops.linewidth: 1.0 boxplot.meanprops.marker: ^ boxplot.meanprops.markeredgecolor: C2 boxplot.meanprops.markerfacecolor: C2 boxplot.meanprops.markersize: 6.0 boxplot.medianprops.color: C1 boxplot.medianprops.linestyle: - boxplot.medianprops.linewidth: 1.0 boxplot.notch: False boxplot.patchartist: False boxplot.showbox: True boxplot.showcaps: True boxplot.showfliers: True boxplot.showmeans: False boxplot.vertical: True boxplot.whiskerprops.color: black boxplot.whiskerprops.linestyle: - boxplot.whiskerprops.linewidth: 1.0 boxplot.whiskers: 1.5 contour.corner_mask: True contour.linewidth: None contour.negative_linestyle: dashed date.autoformatter.day: %Y-%m-%d date.autoformatter.hour: %m-%d %H date.autoformatter.microsecond: %M:%S.%f date.autoformatter.minute: %d %H:%M date.autoformatter.month: %Y-%m date.autoformatter.second: %H:%M:%S date.autoformatter.year: %Y date.converter: None date.epoch: 1970-01-01T00:00:00 date.interval_multiples: None docstring.hardcopy: False errorbar.capsize: 0.0 figure.autolayout: False figure.constrained_layout.h_pad: 0.04167 figure.constrained_layout.hspace: 0.02 figure.constrained_layout.use: False figure.constrained_layout.w_pad: 0.04167 figure.constrained_layout.wspace: 0.02 figure.dpi: 100.0 figure.edgecolor: white figure.facecolor: white figure.figsize: [6.4, 4.8] figure.frameon: True figure.max_open_warning: 20 figure.raise_window: True figure.subplot.bottom: 0.11 figure.subplot.hspace: 0.2 figure.subplot.left: 0.125 figure.subplot.right: 0.9 figure.subplot.top: 0.88 figure.subplot.wspace: 0.2 figure.titlesize: large figure.titleweight: normal font.cursive: ['Apple Chancery', 'Textile', 'Zapf Chancery', 'Sand', 'Script MT', 'Felipa', 'Comic Neue', 'Comic Sans MS', 'cursive'] font.family: ['sans-serif'] font.fantasy: ['Chicago', 'Charcoal', 'Impact', 'Western', 'Humor Sans', 'xkcd', 'fantasy'] font.monospace: ['DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Computer Modern Typewriter', 'Andale Mono', 'Nimbus Mono L', 'Courier New', 'Courier', 'Fixed', 'Terminal', 'monospace'] font.sans-serif: ['DejaVu Sans', 'Bitstream Vera Sans', 'Computer Modern Sans Serif', 'Lucida Grande', 'Verdana', 'Geneva', 'Lucid', 'Arial', 'Helvetica', 'Avant Garde', 'sans-serif'] 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'] font.size: 10.0 font.stretch: normal font.style: normal font.variant: normal font.weight: normal grid.alpha: 1.0 grid.color: #b0b0b0 grid.linestyle: - grid.linewidth: 0.8 hatch.color: black hatch.linewidth: 1.0 hist.bins: 10 image.aspect: equal image.cmap: viridis image.composite_image: True image.interpolation: antialiased image.lut: 256 image.origin: upper image.resample: True interactive: False keymap.all_axes: ['a'] keymap.back: ['left', 'c', 'backspace', 'MouseButton.BACK'] keymap.copy: ['ctrl+c', 'cmd+c'] keymap.forward: ['right', 'v', 'MouseButton.FORWARD'] keymap.fullscreen: ['f', 'ctrl+f'] keymap.grid: ['g'] keymap.grid_minor: ['G'] keymap.help: ['f1'] keymap.home: ['h', 'r', 'home'] keymap.pan: ['p'] keymap.quit: ['ctrl+w', 'cmd+w', 'q'] keymap.quit_all: [] keymap.save: ['s', 'ctrl+s'] keymap.xscale: ['k', 'L'] keymap.yscale: ['l'] keymap.zoom: ['o'] legend.borderaxespad: 0.5 legend.borderpad: 0.4 legend.columnspacing: 2.0 legend.edgecolor: 0.8 legend.facecolor: inherit legend.fancybox: True legend.fontsize: medium legend.framealpha: 0.8 legend.frameon: True legend.handleheight: 0.7 legend.handlelength: 2.0 legend.handletextpad: 0.8 legend.labelspacing: 0.5 legend.loc: best legend.markerscale: 1.0 legend.numpoints: 1 legend.scatterpoints: 1 legend.shadow: False legend.title_fontsize: None lines.antialiased: True lines.color: C0 lines.dash_capstyle: butt lines.dash_joinstyle: round lines.dashdot_pattern: [6.4, 1.6, 1.0, 1.6] lines.dashed_pattern: [3.7, 1.6] lines.dotted_pattern: [1.0, 1.65] lines.linestyle: - lines.linewidth: 1.5 lines.marker: None lines.markeredgecolor: auto lines.markeredgewidth: 1.0 lines.markerfacecolor: auto lines.markersize: 6.0 lines.scale_dashes: True lines.solid_capstyle: projecting lines.solid_joinstyle: round markers.fillstyle: full mathtext.bf: sans:bold mathtext.cal: cursive mathtext.default: it mathtext.fallback: cm mathtext.fallback_to_cm: None mathtext.fontset: dejavusans mathtext.it: sans:italic mathtext.rm: sans mathtext.sf: sans mathtext.tt: monospace patch.antialiased: True patch.edgecolor: black patch.facecolor: C0 patch.force_edgecolor: False patch.linewidth: 1.0 path.effects: [] path.simplify: True path.simplify_threshold: 0.111111111111 path.sketch: None path.snap: True pcolor.shading: flat pcolormesh.snap: True pdf.compression: 6 pdf.fonttype: 3 pdf.inheritcolor: False pdf.use14corefonts: False pgf.preamble: pgf.rcfonts: True pgf.texsystem: xelatex polaraxes.grid: True ps.distiller.res: 6000 ps.fonttype: 3 ps.papersize: letter ps.useafm: False ps.usedistiller: None savefig.bbox: None savefig.directory: ~ savefig.dpi: figure savefig.edgecolor: auto savefig.facecolor: auto savefig.format: png savefig.jpeg_quality: 95 savefig.orientation: portrait savefig.pad_inches: 0.1 savefig.transparent: False scatter.edgecolors: face scatter.marker: o svg.fonttype: path svg.hashsalt: None svg.image_inline: True text.antialiased: True text.color: black text.hinting: force_autohint text.hinting_factor: 8 text.kerning_factor: 0 text.latex.preamble: text.latex.preview: False text.usetex: False timezone: UTC tk.window_focus: False toolbar: toolbar2 webagg.address: 127.0.0.1 webagg.open_in_browser: True webagg.port: 8988 webagg.port_retries: 50 xaxis.labellocation: center xtick.alignment: center xtick.bottom: True xtick.color: black xtick.direction: out xtick.labelbottom: True xtick.labelcolor: inherit xtick.labelsize: medium xtick.labeltop: False xtick.major.bottom: True xtick.major.pad: 3.5 xtick.major.size: 3.5 xtick.major.top: True xtick.major.width: 0.8 xtick.minor.bottom: True xtick.minor.pad: 3.4 xtick.minor.size: 2.0 xtick.minor.top: True xtick.minor.visible: False xtick.minor.width: 0.6 xtick.top: False yaxis.labellocation: center ytick.alignment: center_baseline ytick.color: black ytick.direction: out ytick.labelcolor: inherit ytick.labelleft: True ytick.labelright: False ytick.labelsize: medium ytick.left: True ytick.major.left: True ytick.major.pad: 3.5 ytick.major.right: True ytick.major.size: 3.5 ytick.major.width: 0.8 ytick.minor.left: True ytick.minor.pad: 3.4 ytick.minor.right: True ytick.minor.size: 2.0 ytick.minor.visible: False ytick.minor.width: 0.6 ytick.right: False
rcParamsOrig _internal.classic_mode: False agg.path.chunksize: 0 animation.avconv_args: [] animation.avconv_path: avconv animation.bitrate: -1 animation.codec: h264 animation.convert_args: [] animation.convert_path: convert animation.embed_limit: 20.0 animation.ffmpeg_args: [] animation.ffmpeg_path: ffmpeg animation.frame_format: png animation.html: none animation.html_args: [] animation.writer: ffmpeg axes.autolimit_mode: data axes.axisbelow: line axes.edgecolor: black axes.facecolor: white axes.formatter.limits: [-5, 6] axes.formatter.min_exponent: 0 axes.formatter.offset_threshold: 4 axes.formatter.use_locale: False axes.formatter.use_mathtext: False axes.formatter.useoffset: True axes.grid: False axes.grid.axis: both axes.grid.which: major axes.labelcolor: black axes.labelpad: 4.0 axes.labelsize: medium axes.labelweight: normal axes.linewidth: 0.8 axes.prop_cycle: cycler('color', ['#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', '#8c564b', '#e377c2', '#7f7f7f', '#bcbd22', '#17becf']) axes.spines.bottom: True axes.spines.left: True axes.spines.right: True axes.spines.top: True axes.titlecolor: auto axes.titlelocation: center axes.titlepad: 6.0 axes.titlesize: large axes.titleweight: normal axes.titley: None axes.unicode_minus: True axes.xmargin: 0.05 axes.ymargin: 0.05 axes.zmargin: 0.05 axes3d.grid: True backend: TkAgg backend_fallback: True boxplot.bootstrap: None boxplot.boxprops.color: black boxplot.boxprops.linestyle: - boxplot.boxprops.linewidth: 1.0 boxplot.capprops.color: black boxplot.capprops.linestyle: - boxplot.capprops.linewidth: 1.0 boxplot.flierprops.color: black boxplot.flierprops.linestyle: none boxplot.flierprops.linewidth: 1.0 boxplot.flierprops.marker: o boxplot.flierprops.markeredgecolor: black boxplot.flierprops.markeredgewidth: 1.0 boxplot.flierprops.markerfacecolor: none boxplot.flierprops.markersize: 6.0 boxplot.meanline: False boxplot.meanprops.color: C2 boxplot.meanprops.linestyle: -- boxplot.meanprops.linewidth: 1.0 boxplot.meanprops.marker: ^ boxplot.meanprops.markeredgecolor: C2 boxplot.meanprops.markerfacecolor: C2 boxplot.meanprops.markersize: 6.0 boxplot.medianprops.color: C1 boxplot.medianprops.linestyle: - boxplot.medianprops.linewidth: 1.0 boxplot.notch: False boxplot.patchartist: False boxplot.showbox: True boxplot.showcaps: True boxplot.showfliers: True boxplot.showmeans: False boxplot.vertical: True boxplot.whiskerprops.color: black boxplot.whiskerprops.linestyle: - boxplot.whiskerprops.linewidth: 1.0 boxplot.whiskers: 1.5 contour.corner_mask: True contour.linewidth: None contour.negative_linestyle: dashed date.autoformatter.day: %Y-%m-%d date.autoformatter.hour: %m-%d %H date.autoformatter.microsecond: %M:%S.%f date.autoformatter.minute: %d %H:%M date.autoformatter.month: %Y-%m date.autoformatter.second: %H:%M:%S date.autoformatter.year: %Y date.converter: None date.epoch: 1970-01-01T00:00:00 date.interval_multiples: None docstring.hardcopy: False errorbar.capsize: 0.0 figure.autolayout: False figure.constrained_layout.h_pad: 0.04167 figure.constrained_layout.hspace: 0.02 figure.constrained_layout.use: False figure.constrained_layout.w_pad: 0.04167 figure.constrained_layout.wspace: 0.02 figure.dpi: 100.0 figure.edgecolor: white figure.facecolor: white figure.figsize: [6.4, 4.8] figure.frameon: True figure.max_open_warning: 20 figure.raise_window: True figure.subplot.bottom: 0.11 figure.subplot.hspace: 0.2 figure.subplot.left: 0.125 figure.subplot.right: 0.9 figure.subplot.top: 0.88 figure.subplot.wspace: 0.2 figure.titlesize: large figure.titleweight: normal font.cursive: ['Apple Chancery', 'Textile', 'Zapf Chancery', 'Sand', 'Script MT', 'Felipa', 'Comic Neue', 'Comic Sans MS', 'cursive'] font.family: ['sans-serif'] font.fantasy: ['Chicago', 'Charcoal', 'Impact', 'Western', 'Humor Sans', 'xkcd', 'fantasy'] font.monospace: ['DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Computer Modern Typewriter', 'Andale Mono', 'Nimbus Mono L', 'Courier New', 'Courier', 'Fixed', 'Terminal', 'monospace'] font.sans-serif: ['DejaVu Sans', 'Bitstream Vera Sans', 'Computer Modern Sans Serif', 'Lucida Grande', 'Verdana', 'Geneva', 'Lucid', 'Arial', 'Helvetica', 'Avant Garde', 'sans-serif'] 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'] font.size: 10.0 font.stretch: normal font.style: normal font.variant: normal font.weight: normal grid.alpha: 1.0 grid.color: #b0b0b0 grid.linestyle: - grid.linewidth: 0.8 hatch.color: black hatch.linewidth: 1.0 hist.bins: 10 image.aspect: equal image.cmap: viridis image.composite_image: True image.interpolation: antialiased image.lut: 256 image.origin: upper image.resample: True interactive: False keymap.all_axes: ['a'] keymap.back: ['left', 'c', 'backspace', 'MouseButton.BACK'] keymap.copy: ['ctrl+c', 'cmd+c'] keymap.forward: ['right', 'v', 'MouseButton.FORWARD'] keymap.fullscreen: ['f', 'ctrl+f'] keymap.grid: ['g'] keymap.grid_minor: ['G'] keymap.help: ['f1'] keymap.home: ['h', 'r', 'home'] keymap.pan: ['p'] keymap.quit: ['ctrl+w', 'cmd+w', 'q'] keymap.quit_all: [] keymap.save: ['s', 'ctrl+s'] keymap.xscale: ['k', 'L'] keymap.yscale: ['l'] keymap.zoom: ['o'] legend.borderaxespad: 0.5 legend.borderpad: 0.4 legend.columnspacing: 2.0 legend.edgecolor: 0.8 legend.facecolor: inherit legend.fancybox: True legend.fontsize: medium legend.framealpha: 0.8 legend.frameon: True legend.handleheight: 0.7 legend.handlelength: 2.0 legend.handletextpad: 0.8 legend.labelspacing: 0.5 legend.loc: best legend.markerscale: 1.0 legend.numpoints: 1 legend.scatterpoints: 1 legend.shadow: False legend.title_fontsize: None lines.antialiased: True lines.color: C0 lines.dash_capstyle: butt lines.dash_joinstyle: round lines.dashdot_pattern: [6.4, 1.6, 1.0, 1.6] lines.dashed_pattern: [3.7, 1.6] lines.dotted_pattern: [1.0, 1.65] lines.linestyle: - lines.linewidth: 1.5 lines.marker: None lines.markeredgecolor: auto lines.markeredgewidth: 1.0 lines.markerfacecolor: auto lines.markersize: 6.0 lines.scale_dashes: True lines.solid_capstyle: projecting lines.solid_joinstyle: round markers.fillstyle: full mathtext.bf: sans:bold mathtext.cal: cursive mathtext.default: it mathtext.fallback: cm mathtext.fallback_to_cm: None mathtext.fontset: dejavusans mathtext.it: sans:italic mathtext.rm: sans mathtext.sf: sans mathtext.tt: monospace patch.antialiased: True patch.edgecolor: black patch.facecolor: C0 patch.force_edgecolor: False patch.linewidth: 1.0 path.effects: [] path.simplify: True path.simplify_threshold: 0.111111111111 path.sketch: None path.snap: True pcolor.shading: flat pcolormesh.snap: True pdf.compression: 6 pdf.fonttype: 3 pdf.inheritcolor: False pdf.use14corefonts: False pgf.preamble: pgf.rcfonts: True pgf.texsystem: xelatex polaraxes.grid: True ps.distiller.res: 6000 ps.fonttype: 3 ps.papersize: letter ps.useafm: False ps.usedistiller: None savefig.bbox: None savefig.directory: ~ savefig.dpi: figure savefig.edgecolor: auto savefig.facecolor: auto savefig.format: png savefig.jpeg_quality: 95 savefig.orientation: portrait savefig.pad_inches: 0.1 savefig.transparent: False scatter.edgecolors: face scatter.marker: o svg.fonttype: path svg.hashsalt: None svg.image_inline: True text.antialiased: True text.color: black text.hinting: force_autohint text.hinting_factor: 8 text.kerning_factor: 0 text.latex.preamble: text.latex.preview: False text.usetex: False timezone: UTC tk.window_focus: False toolbar: toolbar2 webagg.address: 127.0.0.1 webagg.open_in_browser: True webagg.port: 8988 webagg.port_retries: 50 xaxis.labellocation: center xtick.alignment: center xtick.bottom: True xtick.color: black xtick.direction: out xtick.labelbottom: True xtick.labelcolor: inherit xtick.labelsize: medium xtick.labeltop: False xtick.major.bottom: True xtick.major.pad: 3.5 xtick.major.size: 3.5 xtick.major.top: True xtick.major.width: 0.8 xtick.minor.bottom: True xtick.minor.pad: 3.4 xtick.minor.size: 2.0 xtick.minor.top: True xtick.minor.visible: False xtick.minor.width: 0.6 xtick.top: False yaxis.labellocation: center ytick.alignment: center_baseline ytick.color: black ytick.direction: out ytick.labelcolor: inherit ytick.labelleft: True ytick.labelright: False ytick.labelsize: medium ytick.left: True ytick.major.left: True ytick.major.pad: 3.5 ytick.major.right: True ytick.major.size: 3.5 ytick.major.width: 0.8 ytick.minor.left: True ytick.minor.pad: 3.4 ytick.minor.right: True ytick.minor.size: 2.0 ytick.minor.visible: False ytick.minor.width: 0.6 ytick.right: False

Liste des alias du module matplotlib.pyplot

Nom de l'alias Définition ciblée
Subplot AxesSubplot