Histograms
Draw one histogram of the DataFrame’s columns, or single histogram for Series
A histogram is a representation of the distribution of data. This function groups the values of all given Series in the DataFrame into bins
Examples
Histogram of a Column in a DataFrame
In the example below, we make an histogram from the Age
column in the titanic dataset.
Customized Histogram plots on DataFrame
For more configuration options for Histograms, see the Plotly doc.
Last updated