Re: Histogram package
- To: mathgroup at smc.vnet.net
- Subject: [mg91187] Re: Histogram package
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Fri, 8 Aug 2008 07:17:54 -0400 (EDT)
- Organization: The Open University, Milton Keynes, UK
- References: <g7ed6j$2ph$1@smc.vnet.net>
Peter Evans wrote:
> ... and here's the code and the error massage...
>
> Histogram[{4/54, 5/54, 5/54, 5/54, 8/54, 7/54, 5/54, 7/54, 8/54},
> FrequencyData -> True]
>
> Range::range: Range specification in \
> Range[Ceiling[-0.05+0./Histograms`Private`TickSpacing[9.,7,{1,2,2.5,5,\
> 10}]],Floor[0.05+9./<<1>>]] does not have appropriate bounds. >>
>
> Range::range: Range specification in \
> Range[Ceiling[-0.05+0./Histograms`Private`TickSpacing[9.,7.,{1.,2.,2.\
> 5,5.,10.}]],Floor[0.05+9./<<1>>]] does not have appropriate bounds. >>
The following works fine on my system (64-bit Intel Mac OS X Leopard
1.5.4 Mathematica 6.0.3). You should tell us more about your system
configuration and also try the following code from within a new
Mathematica session.
In[1]:=
$Version
Needs["Histograms`"]
Histogram[{4/54, 5/54, 5/54, 5/54, 8/54, 7/54, 5/54, 7/54, 8/54},
FrequencyData -> True]
Out[1]= "6.0 for Mac OS X x86 (64-bit) (May 21, 2008)"
Out[3]= [... Histogram displayed without any error messages ...]
Regards,
-- Jean-Marc