Re: BoxWhiskerPlot - BoxLabels and FrameTicks won't work
- To: mathgroup at smc.vnet.net
- Subject: [mg102995] Re: [mg102953] BoxWhiskerPlot - BoxLabels and FrameTicks won't work
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Thu, 3 Sep 2009 07:29:20 -0400 (EDT)
- Reply-to: hanlonr at cox.net
Needs["StatisticalPlots`"] list1 = {4, 3, 5, 6, 4, 5, 7, 5, 3}; list2 = {5, 6, 7, 6, 7, 5, 4}; BoxWhiskerPlot[list1, list2, FrameTicks -> { {Range[3, 7, .5], None}, {{{1, "A"}, {2, "B"}}, None}}] Bob Hanlon ---- janeywit <janeywit at gmail.com> wrote: ============= Hi, I have the problem that I can't seem to have both BoxLabels and FrameTicks show up together. Here's an example: Needs["StatisticalPlots`"] list1 = {4, 3, 5, 6, 4, 5, 7, 5, 3} list2 = {5, 6, 7, 6, 7, 5, 4} BoxWhiskerPlot[list1, list2, BoxLabels -> {"A", "B"}, FrameTicks -> {{{3, 3.5, 4, 4.5}, None}, {None, None}}] If I remove the FrameTicks then the BoxLabels show up correctly, but I can't seem to have both together. Is there any way to do this? Thanks!