What is a histogram? A histogram is a bar graph that shows how many data values fall in each interval (bin). Good for seeing the shape (symmetric / skewed), the center, and the spread.
Use it when: you have many data points (20+) for one quantitative variable.
105, 221, 183, 186, 121, 181, 180, 143, 97, 154, 153, 174, 120, 168, 167, 141, 245, 228, 174, 199, 181, 158, 176, 110, 163, 131, 154, 115, 160, 208, 158, 133, 207, 180, 190, 193, 194, 133, 156, 123, 134, 178, 76, 167, 184, 135, 229, 146, 218, 157, 101, 171, 165, 172, 158, 169, 199, 151, 142, 163, 145, 171, 148, 158, 160, 175, 149, 87, 160, 237, 150, 135, 196, 201, 200, 176, 150, 170, 118, 149
Using the wide-bin histogram, estimate what percent of specimens have compressive strength between 130 and 190 psi?
Equal bin width is important so height comparisons are fair.
A2:A81).Too wide → hides shape; too narrow → looks noisy. Adjust until the pattern is clear.
Q: How many bins should I use?
       A: Not too big, not too small — aim for 6–15; try √n and adjust.
Q: Why are very wide bins bad?
       A: They hide shape (modes/outliers disappear).
Q: Why are tiny bins bad?
       A: They look noisy; random spikes hide the pattern.
Q: Histogram vs. stem‑and‑leaf?
       A: Histogram is faster for large data; stem‑and‑leaf keeps exact values (better for small sets).
Q: Which center to report if skewed?
       A: Use the median (mean gets pulled by the tail).
Q: Frequency vs. relative frequency histogram?
       A: Heights are counts vs. percents (sum to 100%). Shape is the same.