From: Jim Lambaugh on 20 Apr 2010 05:49 Hi Please look at this: Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3}, Frame -> True] The bottom of each column does not meet with the x-axis, but there is a little space between them. Is there any way to remove this? Best regards. Jimmy.
From: Bob Hanlon on 20 Apr 2010 06:53 Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3}, Frame -> True, PlotRange -> {0, Automatic}] Bob Hanlon ---- Jim Lambaugh <lambaugh(a)gmail.com> wrote: ============= Hi Please look at this: Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3}, Frame -> True] The bottom of each column does not meet with the x-axis, but there is a little space between them. Is there any way to remove this? Best regards. Jimmy.
From: Patrick Scheibe on 20 Apr 2010 06:52 Hi, in this special case? Yes Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3}, Frame -> True] /. (PlotRangePadding -> {xdim_, {_, ym_}}) :> PlotRangePadding -> {xdim, {0, ym}} To investigate in such non-complex plots you could have looked at the InputForm of the graphics to see what's happening. Cheers Patrick Am Apr 20, 2010 um 11:49 AM schrieb Jim Lambaugh: > Hi > > Please look at this: > > Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3}, Frame -> True] > > The bottom of each column does not meet with the x-axis, but there is > a little space between them. Is there any way to remove this? > > Best regards. > Jimmy. >
From: David Park on 21 Apr 2010 04:31 Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3}, Frame -> True, PlotRange -> {{0, 4.2}, {0, 4}}] David Park djmpark(a)comcast.net http://home.comcast.net/~djmpark/ From: Jim Lambaugh [mailto:lambaugh(a)gmail.com] Hi Please look at this: Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3}, Frame -> True] The bottom of each column does not meet with the x-axis, but there is a little space between them. Is there any way to remove this? Best regards. Jimmy.
|
Pages: 1 Prev: Easy way to label graphics grids? Next: How can I make graphics unselectable? |