PlotAxes.scatter¶
- PlotAxes.scatter(*args, **kwargs)[source]¶
Plot markers with flexible keyword arguments.
- Parameters
*args (
yorx,y) – The data passed as positional or keyword arguments. Interpreted as follows:If only
ycoordinates are passed, try to infer thexcoordinates from theSeriesorDataFrameindices or theDataArraycoordinates. Otherwise, thexcoordinates arenp.arange(0, y.shape[0]).If the
ycoordinates are a 2D array, plot each column of data in succession (except where each column of data represents a statistical distribution, as withboxplot,violinplot, or when usingmeans=Trueormedians=True).If any arguments are
pint.Quantity, auto-add the pint unit registry to matplotlib’s unit registry usingsetup_matplotlib. Apint.Quantityembedded in anxarray.DataArrayis also supported.
s, size, ms, markersize (
floator array-like orunit-spec, optional) – The marker size area(s). If this is an array matching the shape ofxandy, the units are scaled bysminandsmax. If this contains unit string(s), it is processed byunitsand represents the width rather than area.c, color, colors, mc, markercolor, markercolors, fc, facecolor, facecolors (array-like or
color-spec, optional) – The marker color(s). If this is an array matching the shape ofxandy, the colors are generated usingcmap,norm,vmin, andvmax. Otherwise, this should be a valid matplotlib color.smin, smax (
float, optional) – The minimum and maximum marker size area in unitspoints ** 2. Ignored ifabsolute_sizeisTrue. Default value forsminis1and forsmaxis the square ofrc['lines.markersize']=6.0.absolute_size (
bool, optional) – Whethersshould be taken to represent “absolute” marker size areas in unitspoints ** 2or “relative” marker size areas scaled bysminandsmax. Default isTrueifsis scalar andFalseifsis array-like.vmin, vmax (
float, optional) – The minimum and maximum color scale values used with thenormnormalizer. IfdiscreteisFalsethese are the absolute limits, and ifdiscreteisTruethese are the approximate limits used to automatically determinelevelsorvalueslists at “nice” intervals. Iflevelsorvalueswere already passed as lists, these are ignored, andvminandvmaxare set to the minimum and maximum of the lists. Ifrobustwas passed, the defaultvminandvmaxare some percentile range of the data values. Otherwise, the defaultvminandvmaxare the minimum and maximum of the data values.data (dict-like, optional) – A dict-like dataset container (e.g.,
DataFrameorDataset). If passed, each data argument can optionally be a stringkeyand the arrays used for plotting are retrieved withdata[key]. This is a native matplotlib feature.autoformat (
bool, optional) – Whether thexaxis labels,yaxis labels, axis formatters, axes titles, legend titles, and colorbar labels are automatically configured when aSeries,DataFrame,DataArray, orQuantityis passed to the plotting command. Default isrc.autoformat=True. Formatting ofpint.Quantityunit strings is controlled byrc.unitformat='L'.
- Other Parameters
cmap (
colormap-spec, optional) – The colormap specifer, passed to theColormapconstructor function.c, color, colors (
color-specor sequence ofcolor-spec, optional) – The color(s) used to create aDiscreteColormap. If not passed,cmapis used.norm (
norm-spec, optional) – The data value normalizer, passed to theNormconstructor function. IfdiscreteisTruethen 1) this affects the default level-generation algorithm (e.g.norm='log'builds levels in log-space) and 2) this is passed toDiscreteNormto scale the colors before they are discretized (ifnormis not already aDiscreteNorm).extend (
{'neither', 'both', 'min', 'max'}, optional) – Direction for drawing colorbar “extensions” (i.e. color keys for out-of-bounds data on the end of the colorbar). Default is'neither'.discrete (
bool, optional) – IfFalse, thenDiscreteNormis not applied to the colormap. Instead, for non-contour plots, the number of levels will be roughly controlled byrc['cmap.lut']. This has a similar effect to usinglevels=large_numberbut it may improve rendering speed. Default isTruefor only contour-plotting commands likecontourfand pseudocolor-plotting commands likepcolor.sequential, diverging, cyclic, qualitative (
bool, optional) – Boolean arguments used ifcmapis not passed. Set these toTrueto use the defaultrc['cmap.sequential'],rc['cmap.diverging'],rc['cmap.cyclic'], andrc['cmap.qualitative']colormaps. Thedivergingoption also appliesDivergingNormas the default continuous normalizer.N – Shorthand for
levels.levels (
intor sequence offloat, optional) – The number of level edges or a sequence of level edges. If the former,locatoris used to generate this many level edges at “nice” intervals. If the latter, the levels should be monotonically increasing or decreasing (note decreasing levels fail withcontourplots). Default isrc['cmap.levels']=11.values (
intor sequence offloat, optional) – The number of level centers or a sequence of level centers. If the former,locatoris used to generate this many level centers at “nice” intervals. If the latter, levels are inferred usingedges. This will override anylevelsinput.robust (
bool,float, or2-tuple, optional) – IfTrueandvminorvmaxwere not provided, they are determined from the 2nd and 98th data percentiles rather than the minimum and maximum. If float, this percentile range is used (for example,90corresponds to the 5th to 95th percentiles). If 2-tuple of float, these specific percentiles should be used. This feature is useful when your data has large outliers. Default isrc['cmap.robust']=False.inbounds (
bool, optional) – IfTrueandvminorvmaxwere not provided, when axis limits have been explicitly restricted withset_xlimorset_ylim, out-of-bounds data is ignored. Default isrc['cmap.inbounds']=True. See alsorc['axes.inbounds'].locator (
locator-spec, optional) – The locator used to determine level locations iflevelsorvalueswere not already passed as lists. Passed to theLocatorconstructor. Default isMaxNLocatorwithlevelsinteger levels.locator_kw (dict-like, optional) – Keyword arguments passed to
matplotlib.ticker.Locatorclass.symmetric (
bool, optional) – IfTrue, the normalization range or discrete colormap levels are symmetric about zero. Default is alwaysFalse.positive (
bool, optional) – IfTrue, the normalization range or discrete colormap levels are positive with a minimum at zero. Default is alwaysFalse.negative (
bool, optional) – IfTrue, the normaliation range or discrete colormap levels are negative with a minimum at zero. Default is alwaysFalse.nozero (
bool, optional) – IfTrue,0is removed from the level list. This is mainly useful for single-colorcontourplots.cycle (
cycle-spec, optional) – The cycle specifer, passed to theCycleconstructor. If the returned cycler is unchanged from the current cycler, the axes cycler will not be reset to its first position. To disable property cycling and just use black for the default color, usecycle=False,cycle='none', orcycle=()(analogous to disabling ticks with e.g.xformatter='none'). To restore the default property cycler, usecycle=True.lw, linewidth, linewidths, mew, markeredgewidth, markeredgewidths (
floator sequence, optional) – The marker edge width(s).edgecolors, markeredgecolor, markeredgecolors (
color-specor sequence, optional) – The marker edge color(s).mean, means (
bool, optional) – Whether to plot the means of each column for 2Dycoordinates. Means are calculated withnumpy.nanmean. If no other arguments are specified, this also setsbarstd=True(andboxstd=Truefor violin plots).median, medians (
bool, optional) – Whether to plot the medians of each column for 2Dycoordinates. Medians are calculated withnumpy.nanmedian. If no other arguments arguments are specified, this also setsbarstd=True(andboxstd=Truefor violin plots).bars (
bool, optional) – Shorthand forbarstd,barstds.barstd, barstds (
bool,float, or2-tupleoffloat, optional) – Valid only ifmeanormedianisTrue. Standard deviation multiples for thin error bars with optional whiskers (i.e., caps). If scalar, then +/- that multiple is used. IfTrue, the default standard deviation range of +/-3 is used.barpctile, barpctiles (
bool,float, or2-tupleoffloat, optional) – Valid only ifmeanormedianisTrue. As withbarstd, but instead using percentiles for the error bars. If scalar, that percentile range is used (e.g.,90shows the 5th to 95th percentiles). IfTrue, the default percentile range of 0 to 100 is used.bardata (array-like, optional) – Valid only if
meanandmedianareFalse. If shape is 2 x N, these are the lower and upper bounds for the thin error bars. If shape is N, these are the absolute, symmetric deviations from the central points.boxes (
bool, optional) – Shorthand forboxstd,boxstds.boxstd, boxstds, boxpctile, boxpctiles, boxdata (optional) – As with
barstd,barpctile, andbardata, but for thicker error bars representing a smaller interval than the thin error bars. IfboxstdsisTrue, the default standard deviation range of +/-1 is used. IfboxpctilesisTrue, the default percentile range of 25 to 75 is used (i.e., the interquartile range). When “boxes” and “bars” are combined, this has the effect of drawing miniature box-and-whisker plots.capsize (
float, optional) – The cap size for thin error bars in points. Default isrc['errorbar.capsize']=3.0.barz, barzorder, boxz, boxzorder (
float, optional) – The “zorder” for the thin and thick error bars. Default is2.5.barc, barcolor, boxc, boxcolor (
color-spec, optional) – Colors for the thin and thick error bars. Default isrc['boxplot.whiskerprops.color']='black'.barlw, barlinewidth, boxlw, boxlinewidth (
float, optional) – Line widths for the thin and thick error bars, in points. The defaultsrc['boxplot.whiskerprops.linewidth']=1.0(bars) and four times that value (boxes).boxm, boxmarker (
boolormarker-spec, optional) – Whether to draw a small marker in the middle of the box denoting the mean or median position. Ignored ifboxesisFalse. Default is'o'.boxms, boxmarkersize (
size-spec, optional) – The marker size for theboxmarkermarker in points ** 2. Default size is equal to(2 * boxlinewidth) ** 2.boxmc, boxmarkercolor, boxmec, boxmarkeredgecolor (
color-spec, optional) – Color, face color, and edge color for theboxmarkermarker. Default color and edge color are'w'.shade (
bool, optional) – Shorthand forshadestd.shadestd, shadestds, shadepctile, shadepctiles, shadedata (optional) – As with
barstd,barpctile, andbardata, but using shading to indicate the error range. IfshadestdsisTrue, the default standard deviation range of +/-2 is used. IfshadepctilesisTrue, the default percentile range of 10 to 90 is used.fade (
bool, optional) – Shorthand forfadestd.fadestd, fadestds, fadepctile, fadepctiles, fadedata (optional) – As with
shadestd,shadepctile, andshadedata, but for an additional, more faded, secondary shaded region. IffadestdsisTrue, the default standard deviation range of +/-3 is used. IffadepctilesisTrue, the default percentile range of 0 to 100 is used.shadec, shadecolor, fadec, fadecolor (
color-spec, optional) – Colors for the different shaded regions. Default is to inherit the parent color.shadez, shadezorder, fadez, fadezorder (
float, optional) – The “zorder” for the different shaded regions. Default is1.5.shadea, shadealpha, fadea, fadealpha (
float, optional) – The opacity for the different shaded regions. Defaults are0.4and0.2.shadelw, shadelinewidth, fadelw, fadelinewidth (
float, optional) – The edge line width for the shading patches. Default isrc['patch.linewidth']=0.6.shdeec, shadeedgecolor, fadeec, fadeedgecolor (
float, optional) – The edge color for the shading patches. Default is'none'.shadelabel, fadelabel (
boolorstr, optional) – Labels for the shaded regions to be used as separate legend entries. To toggle labels “on” and apply a default label, use e.g.shadelabel=True. To apply a custom label, use e.g.shadelabel='label'. Otherwise, the shading is drawn underneath the line and/or marker in the legend entry.inbounds (
bool, optional) – Whether to restrict the defaulty(x) axis limits to account for only in-bounds data when thex(y) axis limits have been locked. Default isrc['axes.inbounds']=True. See alsorc['cmap.inbounds'].label, value (
floatorstr, optional) – The single legend label or colorbar coordinate to be used for this plotted element. Can be numeric or string. This is generally used with 1D positional arguments.labels, values (sequence of
floator sequence ofstr, optional) – The legend labels or colorbar coordinates used for each plotted element. Can be numeric or string, and must match the number of plotted elements. This is generally used with 2D positional arguments.colorbar (
bool,int, orstr, optional) – If notNone, this is a location specifying where to draw an inset or outer colorbar from the resulting object(s). IfTrue, the defaultrc['colorbar.loc']='right'is used. If the same location is used in successive plotting calls, object(s) will be added to the existing colorbar in that location (valid for colorbars built from lists of artists). Valid locations are shown in incolorbar.colorbar_kw (dict-like, optional) – Extra keyword args for the call to
colorbar.legend (
bool,int, orstr, optional) – Location specifying where to draw an inset or outer legend from the resulting object(s). IfTrue, the defaultrc['legend.loc']='best'is used. If the same location is used in successive plotting calls, object(s) will be added to existing legend in that location. Valid locations are shown inlegend.legend_kw (dict-like, optional) – Extra keyword args for the call to
legend.**kwargs – Passed to
scatter.