md`#### Average\n Mean Weight: ${
d3.mean(data.filter(d => d.Weight > 0),
d => d.Weight).toFixed(2)} grams
Median Weight: ${
d3.median(data.filter(d => d.Weight > 0),
d => d.Weight).toFixed(2)} (both excluding 0s)\n
(Most cameras weigh around 200g, but there are a few heavier cameras.)`