Re: Framelabel without drawing frame
- To: mathgroup at smc.vnet.net
- Subject: [mg130174] Re: Framelabel without drawing frame
- From: Bill Rowe <readnews at sbcglobal.net>
- Date: Sun, 17 Mar 2013 03:09:28 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-newout@smc.vnet.net
- Delivered-to: mathgroup-newsend@smc.vnet.net
On 3/16/13 at 3:16 AM, fms at garlic.com (Fred Schenkelberg) wrote: >I've been trying to add what looks like frame labels to x and y axis >of bar chart - and without Frame->True - as I do not want look of >the full frame. >BarChart[Table[PDF[BinomialDistribution[8, 0.2], i], {i, 0, >8}], PlotRange -> All, ChartLabels -> {"0", "1", "2", "3", "4", >"5", "6", >"7", "8"}] >just trying to label the x axis with "Count of successes" and y axis >with "Probability" rotated along y axis >I can get framelabel to do this properly, yet not able to not show >the frame when I do Frame -> True >any suggestions? Perhaps this will do what you want Labeled[BarChart[ Table[PDF[BinomialDistribution[8, 0.2], i], {i, 0, 8}], PlotRange -> All, ChartLabels -> {"0", "1", "2", "3", "4", "5", "6", "7", "8"}], {"Count of successes", Rotate["Probability", Pi/2]}, {Bottom, Left}]