My GNUplot 5.2 plot of:
$heights << EOD
dad 181
mom 170
son 100
daughter 60
EOD
set terminal png
plot '$heights' using 2:xtic(1) with boxes
As you can see "daughter" doesn't start at zero. I tried set yzeroaxis
from the documentation but that didn't appear to have any impact.
BONUS: How do I remove that $heights using 2:xtic(1)
line?