Skip to main content

function wandb.plot.histogram()

Constructs a histogram chart from a W&B Table.

Args

wandb.Table
The W&B Table containing the data for the histogram.
str
The label for the bin axis (x-axis).
str
The title of the histogram plot.
bool
Whether the table should be split into a separate section in the W&B UI. If True, the table will be displayed in a section named “Custom Chart Tables”. Default is False.

Returns

CustomChart: A custom chart object that can be logged to W&B. To log the chart, pass it to wandb.log().

Examples