Re: Stats Pack and LocationReport
- To: mathgroup at smc.vnet.net
- Subject: [mg51371] Re: [mg51335] Stats Pack and LocationReport
- From: DrBob <drbob at bigfoot.com>
- Date: Fri, 15 Oct 2004 02:47:09 -0400 (EDT)
- References: <200410141037.GAA14977@smc.vnet.net>
- Reply-to: drbob at bigfoot.com
- Sender: owner-wri-mathgroup at wolfram.com
Possibly this is what you mean to do:
x = Table[Cos@t + Sin@i, {t, 1, 6}, {i, 1, 7}];
data = Take[x, {4, 6}, {5, 6}]
LocationReport /@ Transpose@data
DispersionReport /@ Transpose@data
(* output omitted)
Bobby
On Thu, 14 Oct 2004 06:37:40 -0400 (EDT), Gregory Lypny <gregory.lypny at videotron.ca> wrote:
> Hello Everyone,
>
> Never know what I'm wrong...
>
> I loaded the stats pack as
>
> << Statistics`DescriptiveStatistics`
>
> I can compute various univariate statistics as
>
> Mean[Take[X, {t0, t1}, {6, 6}]]
>
> Median[Take[X, {t0, t1}, {6, 6}]]
>
> Variance[Take[X, {t0, t1}, {6, 6}]],
>
> where I am referring to a portion of one column of matrix X.
>
> But LocationReport[Take[X, {t0, t1}, {6, 6}]] and DisxpersionReport[.]
> do not work. They simply return a listing of my data. What am I doing
> wrong?
>
> Greg
>
>
>
>
--
DrBob at bigfoot.com
www.eclecticdreams.net
- References:
- Stats Pack and LocationReport
- From: Gregory Lypny <gregory.lypny@videotron.ca>
- Stats Pack and LocationReport