Nothing
llr<-function(x,p,q,r,m, lawley.correction=F)
{
N <- sum(x)
ll <- 2*( x*log(r/p)+x*log(r/q) )
if (lawley.correction)
{
ll <- ll / (1+ (sum(N/x)-1) /(3*N*(factorial(m)-1)))
}
return( ll );
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.