Histogram
A histogram showing the distribution of Olympic athletes’ weights.
<Plot height={300} grid marginLeft={40}>
<RectY
{...binX(
{ data: olympians, x: 'weight' },
{ y: 'count' }
)} />
<RuleY data={[0]} />
</Plot>