I am creating some basic stem and leaf plots. I would like to reverse
the order of the stems in the output so they are decreasing from high
to low rather than the usual low to high. I have not been able to find
any documentation in the help system that explains how to reverse that
order. I have tried the reverse function but that doesn't seem
compatible.
|
|
0
|
|
|
|
Reply
|
jroge
|
7/12/2010 5:05:06 AM |
|
jroge wrote:
> I am creating some basic stem and leaf plots. I would like to reverse
> the order of the stems in the output so they are decreasing from high
> to low rather than the usual low to high. I have not been able to find
> any documentation in the help system that explains how to reverse that
> order. I have tried the reverse function but that doesn't seem
> compatible.
>
>
There currently isn't a built-in control for this, but the effect can be
obtained by replacing the entries in the output by reversed entries. The
following shows how that could be done.
In[1]:= << StatisticalPlots`
In[2]:= sldata = {1, 3.2, 3.1, 4.556, 5.7345};
In[3]:= slp = StemLeafPlot[sldata];
In[4]:= slp[[1, 1, 1, 1, 2 ;; All]] = Reverse[slp[[1, 1, 1, 1, 2 ;; All]]];
In[5]:= slp
Out[5]= Stem Leaves
5 7
4 6
3 12
1 0
Stem units: 1
Is this a common thing to want for stem and leaf plots? If so, perhaps
it would be useful for us to add an option to the function.
Darren Glosemeyer
Wolfram Research
|
|
0
|
|
|
|
Reply
|
Darren
|
7/13/2010 9:27:16 AM
|
|