bar chart ticks not placed well?
- To: mathgroup at smc.vnet.net
- Subject: [mg106066] bar chart ticks not placed well?
- From: rs_poetic <schantz-plante at cox.net>
- Date: Thu, 31 Dec 2009 03:19:36 -0500 (EST)
Hello,
in this simple bar chart, there are 101 bars (some of them very small
and including 0 and 100). The x axis labels appear to be shifted a bit
to the left. The apparent misplacement is enough to be noticed and to
confuse the reader. Am I using the wrong command, or....?
s = Sum[Binomial[100, k], {k, 0, 100}];
slist = Table[Binomial[100, k], {k, 0, 100}];
labellist = Table[k, {k, 0, 100, 25}];
BarChart[N[slist/s], Ticks -> {labellist, Automatic}]