Axes.barh(bottom, width, height=0.8, left=None, **kwargs)¶Make a horizontal bar plot.
Make a horizontal bar plot with rectangles bounded by:
left,left+width,bottom,bottom+height- (left, right, bottom and top edges)
bottom, width, height, and left can be either scalars
or sequences
| Parameters: | bottom : scalar or array-like
width : scalar or array-like
height : sequence of scalars, optional, default: 0.8
left : sequence of scalars
|
|---|---|
| Returns: |
|
| Other Parameters: | |
color : scalar or array-like, optional
edgecolor : scalar or array-like, optional
linewidth : scalar or array-like, optional, default: None
tick_label : string or array-like, optional, default: None
xerr : scalar or array-like, optional, default: None
yerr : scalar or array-like, optional, default: None
ecolor : scalar or array-like, optional, default: None
capsize : scalar, optional
error_kw :
align : [‘edge’ | ‘center’], optional, default: ‘edge’
log : boolean, optional, default: False
|
|
See also
barNotes
The optional arguments color, edgecolor, linewidth,
xerr, and yerr can be either scalars or sequences of
length equal to the number of bars. This enables you to use
bar as the basis for stacked bar charts, or candlestick plots.
Detail: xerr and yerr are passed directly to
errorbar(), so they can also have shape 2xN for
independent specification of lower and upper errors.
Other optional kwargs:
Property Description agg_filterunknown alphafloat or None animated[True | False] antialiasedor aa[True | False] or None for default axesan Axesinstancebottom_marginunknown capstyle[‘butt’ | ‘round’ | ‘projecting’] clip_boxa matplotlib.transforms.Bboxinstanceclip_on[True | False] clip_path[ ( Path,Transform) |Patch| None ]colormatplotlib color spec containsa callable function edgecoloror ecmpl color spec, None, ‘none’, or ‘auto’ facecoloror fcmpl color spec, or None for default, or ‘none’ for no color figurea matplotlib.figure.Figureinstancefill[True | False] gidan id string hatch[‘/’ | ‘\’ | ‘|’ | ‘-‘ | ‘+’ | ‘x’ | ‘o’ | ‘O’ | ‘.’ | ‘*’] joinstyle[‘miter’ | ‘round’ | ‘bevel’] labelstring or anything printable with ‘%s’ conversion. left_marginunknown linestyleor ls[‘solid’ | ‘dashed’, ‘dashdot’, ‘dotted’ | (offset, on-off-dash-seq) | '-'|'--'|'-.'|':'|'None'|' '|'']linewidthor lwfloat or None for default marginsunknown path_effectsunknown picker[None|float|boolean|callable] rasterized[True | False | None] right_marginunknown sketch_paramsunknown snapunknown top_marginunknown transformTransforminstanceurla url string visible[True | False] zorderany number