View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Lori Miller Lori Miller is offline
external usenet poster
 
Posts: 64
Default Formula for Cochran's Critical Values

it doesn't look like there's a simple formula for small samples, although it
approaches a Chi squared for larger ones (cf.
http://www.watpon.com/table/cochran.pdf).
Somewhat more accurate than a linear approximation would be to use cubic
interpolation around the neighbouring points eg for k=50 and v=1:

=TREND(B15:B18,A15:A18^{1,2,3},A25^{1,2,3})

gives 0.2599 as opposed to 0.2461 for the linear case. This formula can be
generalised by adapting Bernie's formula above (using offset(...-2,0,4,1) and
^{1,2,3}).


"Dave Curtis" wrote:

Hi,

I'm trying to do some data analysis using Cochran's test for outlying
variances.
I have 4 replicate numbers from each of 20 laboratories. I calculate the
variance of each set of data.
I can work out the Cochran's test value by dividing the maximum variance by
the sum of all the variances.
Then I need to compare this with the Cochran critical values, which are
available from tables, but these have gaps, so I'd like to be able to
calculate them.
Does anyone know of a formula to calculate these?

Dave