Export Image
Export Code

Fork of Histogram

zjulijie0618

Last edited Jan 23, 2022
Created on Jan 23, 2022
Forked from Histogram

Histogram

Definition

A histogram is an accurate graphical representation of the distribution of a numeric variable. It takes as input numeric variables only. The variable is cut into several bins, and the number of observation per bin is represented by the height of the bar.

What For

Histogram are used to study the distribution of one or a few variables. Checking the distribution of your variables one by one is probably the first task you should do when you get a new dataset. It delivers a good quantity of information.

Steps:

  1. A histogram displays the distribution of a numeric variable. So you basically need only one column in your input file.
  2. This numeric variable is provided to the d3.histogram() function that will compute the binning and returns the coordinates of each bar.
  3. These bars can thus be drawn using a classic .append("rect") approach.
MIT Licensed