Histogram

Histograms visually summarize the distribution of a continuous numeric variable by measuring the frequency at which certain values appear in the dataset. The x-axis in a histogram is a number line that has been split into number ranges, or bins. For each bin, a bar is drawn where the width of the bar represents the range of the bin, and the height of the bar represents the number of data points that fall into that range. Understanding the distribution of your data is an important step in the data exploration process.

Variable

Histograms require one continuous Number variable on the x-axis.

Transformation

Some analytical methods require that data be normally distributed. When the data is skewed (the distribution is lopsided), you may want to transform the data to make it normal. Histograms allow you to explore the effects of logarithmic and square root transformations on the distribution of your data. For reference, you can add a normal distribution overlay to your histogram by checking the Show Normal distribution check box in the Chart properties pane.

Logarithmic transformation

The logarithmic transformation is often used where the data has a positively skewed distribution and there are a few very large values. If these large values are located in your dataset, the log transformation will help make the variances more constant and normalize your data.

For example, the positively skewed distribution in the chart on the left is transformed to a normal distribution using a logarithmic transformation in the chart on the right:

Chart of raw data distribution on the left, compared to logarithmic transformation on the right.

Note:

Logarithmic transformations can only be applied to numbers greater than zero.

Square root transformation

A square root transformation is similar to a logarithmic transformation in that it reduces right skewness of a dataset. Unlike logarithmic transformations, square root transformations can be applied to zero.

Note:

Square root transformations can only be applied to numbers greater than or equal to zero.

Inverse transformation

An inverse transformation takes the reciprocal (1/x) of each value (x) in the field.

Note:

Inverse transformations cannot be applied to zero values. If there are zero values in the field, they are evaluated as null values.

Box-Cox transformation

A Box-Cox transformation applies the following power function to normally distribute values:

Box-Cox transformation

where x' is the transformed value, x is the original value, λ1 is the Power parameter, and λ2 is the Shift parameter.

Note:

Box-Cox transformations can only be applied to positive values. In cases where negative or zero values exist, use the Shift parameter to ensure all values are positive.

Number of bins

The number of bins defaults to the square root of the number of records in your dataset. You can adjust this by changing the Bins value in the Data tab of the Chart Properties pane. Changing the number of bins allows you to see more or less detail in the structure of your data.

Statistics

Several descriptive statistics are calculated and displayed as vertical lines on histograms. The mean and median are displayed with one line each, and one standard deviation above and below the mean is displayed using two lines. You can click these items in the chart legend to turn them on or off.

A Statistics table is displayed in the Data tab of the Chart Properties pane containing the following statistics for the selected numeric field:

  • Mean
  • Median
  • Standard Deviation
  • Count
  • Min
  • Max
  • Sum
  • Nulls
  • Skewness
  • Kurtosis

If the chart's source layer has a selection set, the statistics table will have one column displaying statistics for the full dataset and one column displaying statistics for only the selection set.

The statistics table also includes controls for you to turn the histogram's mean, median, and standard deviation lines on and off, and change their color.

You can right-click in the statistics table and select Copy Table, Copy Row, or Copy Value. This will allow you to copy and paste statistics from the Charts Properties pane into other windows or applications.

Axes

Y-axis bounds

Default y-axis bounds are set based on the range of data values represented on the y-axis. You can customize these values by typing in a new desired axis bound value. You can set axis bounds as a way to keep the scale of your chart consistent for comparison. Click the reset button to revert the axis bound back to the default value.

Number format

You can format the way an axis will display numeric values by specifying a number format category or by defining a custom format string. For example, you can use $#,### as a custom format string to display currency values.

Appearance

Titles and description

Charts and axes are given default titles based on the variable names and chart type. These can be edited on the General tab in the Chart Properties pane. You can also provide a chart Description, which is a block of text that appears at the bottom of the chart window.

Color

You can change the color of a histogram's bins using the color patch next to Bins in the Data tab of the Chart Properties pane.

Guides

Guide lines or ranges can be added to charts as a reference or way to highlight significant values. To add a new guide, on the Guides tab in the Chart Properties pane, click Add guide. To draw a line, enter a Value where you would like the line to draw. To create a range, enter a to value. You can optionally add text to your guide by specifying a Label.

Example

Create a histogram to visualize distribution of population density across Washington, D.C., census block groups.

  • Number— Population Density

Histogram showing distribution of population density across DC block groups

Related topics