Module:
sdynpy.doc.sdynpy_vibration_testSource: GitHub
Signature¶
def sdynpy.doc.sdynpy_vibration_test.dynamic_barh(values, labels=None, max_per_col=35)Create a horizontal bar chart with automatic multi-column layout.
Parameters¶
values : array_like Numeric values to plot as horizontal bars.
labels : CoordinateArray or None, optional Labels for the y-axis ticks. If a
CoordinateArrayis provided the tick labels are set accordingly. Default isNone.max_per_col : int, optional Maximum number of bars per column before a new column is added. Default is 35.
Returns¶
fig : matplotlib.figure.Figure The created figure.
axes : list of matplotlib.axes.Axes List of axes, one per column.