Re: BinCounts Function
- To: mathgroup at smc.vnet.net
- Subject: [mg26093] Re: BinCounts Function
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Tue, 28 Nov 2000 01:55:37 -0500 (EST)
- Organization: Universitaet Leipzig
- References: <8vfset$jlm@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
you have load the statistics package ?
And
Needs["Statistics`DataManipulation`"]
or
Get["Statistics`DataManipulation`"]
is exectuted ?
In[]:= Needs["Statistics`DataManipulation`"]
dt1 = Table[Random[Integer, {1, 9}], {100}];
BinCounts[dt1, {1, 10, 1}]
Out[]={16, 12, 10, 6, 10, 13, 13, 8, 0}
Regards
Jens
"Jeffrey M Colón" wrote:
>
> I'm having some difficulty in applying the BinCounts function to a simple
> data set.
>
> Load the statistics/datamanipulation programs
> dt1 = {1,2,3, etc.}
> BinCounts[dt1, {1,10,1}] produces the following output: BinCounts[{1,2,3,
> etc.}, {1,10,1}]
>
> I use V. 3 (student version) with Windows '98.
>
> Thanks for any assistance.