Challenges in Defining Histogram Buckets for Zero Values
¡
when defining buckets for histograms it's often (almost always) useful to keep 0 as its own bucket, since it tends to be a fairly special value; however, there's no easy way to do this in the current interface; for example, I usually want equally varied buckets like in the first image (which gives me the second image), but with zero separated out... I could go to "varied" to create the buckets I want, like in the third image, but notice that the buckets are now "<0, 0-1, 1-2, ..." meaning there's no separate bucket for zero (although I'm guessing the 0-1 bucket is actually just for zero?)