R/size_c.three_way_mixed_ab_in_c.model_5_a.R

Defines functions size_c.three_way_mixed_ab_in_c.model_5_a

Documented in size_c.three_way_mixed_ab_in_c.model_5_a

#(size c.three way mixed ab in c. model 5 a)
# Section 3.4.3.4 test factor A

# Three way mixed classification. (AxB)>C, Model V
# Factor A, B are fixed. C is random. Determining c, n=1
# a and b are given. Testing hypothesis about factor A
size_c.three_way_mixed_ab_in_c.model_5_a <-  function(alpha, beta, delta, a, b, n, cases)
{
	c <- 5    
	c.new <- 1000
	while (abs(c -c.new)>1e-6)
	{
		c <- c.new
		dfn <- a-1
		dfd <- a*b*(c-1)
		lambda <- ncp(dfn,dfd,alpha,beta)
		if (cases == "maximin")
		{
			c.new <- 2*lambda/(b*n*delta*delta)
		}
		else if (cases == "minimin")
		{
			c.new <- 4*lambda/(a*b*n*delta*delta)
		}
	}  
	return(ceiling(c.new))
}


# example
# size.3_4_3_4.test_factor_A(0.05, 0.1, 0.5, 6, 5, 1, "maximin")
# size.3_4_3_4.test_factor_A(0.05, 0.1, 0.5, 6, 5, 1, "minimin")

Try the OPDOE package in your browser

Any scripts or data that you put into this service are public.

OPDOE documentation built on May 1, 2019, 8:45 p.m.